ansile模块之group
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ansile模块之group相关的知识,希望对你有一定的参考价值。
ansible group模块与系统命令使用相似
参数 | 是否必要 | 默认 | 选项 | 说明 |
gid | no | 选择需要设置的GID | ||
name | yes | 需要配置的组名 | ||
state | no | present | present absent | 添加或删除组 |
system | no | no | yes no | yes时添加的是系统组 |
添加组
# ansible dbserver -m group -a "name=zld state=present" 172.16.110.49 | SUCCESS => { "changed": true, "gid": 1001, "name": "zld", "state": "present", "system": false }
# ansible dbserver -a "grep zld /etc/group" 172.16.110.49 | SUCCESS | rc=0 >> zld:x:1001:
2.删除组
# ansible dbserver -m group -a "name=zld state=absent" 172.16.110.49 | SUCCESS => { "changed": true, "name": "zld", "state": "absent" }
# ansible dbserver -a "grep zld /etc/group" 172.16.110.49 | FAILED | rc=1 >>
3.添加系统组
# ansible dbserver -m group -a "name=cklser state=present system=yes" 172.16.110.49 | SUCCESS => { "changed": true, "gid": 993, "name": "cklser", "state": "present", "system": true }
# ansible dbserver -a "grep cklser /etc/group" 172.16.110.49 | SUCCESS | rc=0 >> cklser:x:993:
系统组ID在1000以下
本文出自 “深呼吸再出击” 博客,请务必保留此出处http://ckl893.blog.51cto.com/8827818/1887036
以上是关于ansile模块之group的主要内容,如果未能解决你的问题,请参考以下文章