盐栈:创建具有相同名称的用户和组

时间:2015-03-23 16:01:16

标签: python salt-stack

我正在尝试在多个具有相同名称的ngaios服务器上创建用户和组。

我有这段代码:

nagios:
  group:
    - present
  user:
    - present
    - fullname: Nagios System Monitoring
    - shell: /bin/bash
    - home: /opt/nagios

小组被正确创建,但用户却没有,我无法告诉我原因。

1 个答案:

答案 0 :(得分:3)

来自文档http://docs.saltstack.com/en/latest/ref/states/all/salt.states.user.html

user.present:
  - gid_from_name
    If True, the default group id will be set to the 
    id of the group with the same name as the user, Default is False.

此外,通常情况下,您可以通过ssh进入目标minion并通过salt-call运行状态来获得更好的调试输出,无论是否有-l debug