在远程主机上执行复杂的命令,比较好用得模块
ansible 主机清单 -m 模块名 -a ‘执行命令’
[root@ansible ansible]# ansible -i hosts mysql -m shell -a 'cat /etc/passwd | grep -i root'
192.168.56.88 | CHANGED | rc=0 >>
root:x:0:0:root:/root:/bin/bash
operator:x:11:0:operator:/root:/sbin/nologin
[root@ansible ansible]# ansible -i hosts mysql -m shell -a 'mkdir /home/hbhe && cd /home/hbhe && pwd'
[WARNING]: Consider using the file module with state=directory rather than
running 'mkdir'. If you need to use command because file is insufficient you
can add 'warn: false' to this command task or set 'command_warnings=False' in
ansible.cfg to get rid of this message.
192.168.56.88 | CHANGED | rc=0 >>
/home/hbhe
版权声明:本文为博主原创文章,未经博主允许不得转载。
ansible