Bootstrap

Ansible 1.5.2:shell 模块

1.5.2:shell 模块

官方文档:https://docs.ansible.com/ansible/latest/collections/ansible/builtin/shell_module.html#ansible-collections-ansible-builtin-shell-module

shell模块用于在目标主机上执行shell命令。和command模块相比,它支持shell的特性,因此通常会将ansible的默认模块更改为shell。

[root@ansible ~]# vim /etc/ansible/ansible.cfg 
module_name = shell

shell模块的操作同样不具有幂等性,在playbook中使用时,要注意在操作前加上条件判断,使其具有幂等性。

1.5.2.1:常用模块参数
参数说明
FREE_FORMFREE_FORM不是一个特定的参数,是free form的字符串,表示可执行的命令。
chdir在执行命令前切换到指定的目录。
creates条件判断,指定一个文件名称(支持glob模式),如果文件存在,则不执行指定的操作(只有在指定文件不存在的情况下才进行本次操作)。
removes条件判断,指定一个文件名称(支持glob模式),当指定文件存在时,才执行本次操作。
1.5.2.2:示例

在命令中使用管道符,更改testuser用户的密码:

[root@ansible ~]# ansible centos -m shell -a "echo '123456' | passwd --stdin testuser"       

在命令中使用输出重定向:

[root@ansible ~]# ansible centos -m shell -a "echo 'hello' > /tmp/hello.txt"          
192.168.1.203 | CHANGED | rc=0 >>

[root@ansible ~]# ansible centos -m shell -a "cat /tmp/hello.txt"           
192.168.1.203 | CHANGED | rc=0 >>
hello
;