[root@ansible~]# ansible webServers-m user-a'name=ok state=present' webServers: 指定主机组的名称。在这个示例中,它可能代表一个或多个Web服务器。 -m user: 指定使用user模块,该模块用于管理用户账户。 -a 'name=ok state=present': 模块参数。name=ok指定用户名称为ok,state=present确保用户存在 客户...
[root@server1 testdir]# ansible testB -m user -a "user=xxx groups=west " 1. 附加组不更新(参数append) [root@server1 testdir]# ansible testB -m user -a "user=xxx groups=linux append=yes " 1. 添加多个附加组:(逗号隔开) [root@server1 testdir]# ansible testB -m user -a "user=...
ansible test177 -m user -a 'name=sazhuo state=absent remove=yes' 1. 删除用户的同时家目录也会删除 ansible test177 -m user -a 'name=sa group=zabbix' 1. 把在177上的sa用户的用户组更改为zabbix,默认的话sa的用户组就是sa,来看一下效果: ansible test177 -m user -a 'name=sa groups=root ...
[root@localhost ~]# ansible all -m shell -a "rpm -qa nmap warn=false" #首先检查系统是否安装了nmap软件包,若未安装,可以使用ansible模块中的yum模块安装nmap软件包 192.168.146.110 | CHANGED | rc=0 >> nmap-6.40-19.el7.x86_64 192.168.146.110 | CHANGED | rc=0 >> [root@localhost ~]# ansi...