AI智能
改变未来

ansible常用模块介绍:shell


简介

shell模块是ansible里面比较常用的模块。顾名思义,shell模块用于执行shell命令。我们利用ansible批量在多台机器上执行shell命令,该模块非常的简单粗暴。

对于ansible很多模块,都可以用shell替代达到相对应的效果。

虽然shell模块看起来非常万能,但存在着许多风险。例如:shell注入风险,非幂等性(即统一命令多次执行的结果可能是不一样的)

如何使用

帮助

ansible-doc -s shell- name: Execute commands in nodes.action: shellchdir # cd into this directory before running the commandcreates # a filename, when it already exists, this step will *not* be run.executable # change the shell used to execute the command. Should be an absolute path to the executable.free_form= # The shell module takes a free form command to run, as a string. There\'s not an actual option named \"free form\". See theexamples!removes # a filename, when it does not exist, this step will *not* be run.warn # if command warnings are on in ansible.cfg, do not warn about this particular line if set to no/false.

说明

chdir:在哪个目录下执行shell命令,相当于执行shell命令前先cd到对应目录

creates:如果存在某文件,就不执行shell

removes:如果不存在某文件,就不执行shell;与creates左右相反(有点绕)

executable:修改并指定shell解释器来执行命

free_form:指的就是具体的shell命令,实际上是一个不存在的选项

例子

/etc/ansible/hosts配置如下:

[local]127.0.0.1

1) 查看当前目录,在local节点上运行

#-m shell表示使用shell模块#-a 表示传递shell模块的相关参数#-i 指定了inventory文件#local是inventory文件里面定义好的节点ansible -i /etc/ansible/hosts local -m shell -a \'pwd\'

2) 设定/root/ccg为当前目录,在local节点上运行

ansible -i /etc/ansible/hosts local -m shell -a \’pwd chdir=/root/ccg\’

也可以写成:ansible -i /etc/ansible/hosts local -m shell -a \’cd /root/ccg && pwd\’

3) 使用shell解释器为dash执行

ansible -i /etc/ansible/hosts local -m shell -a \’pwd executable=/bin/dash\’

4) 如果存在~/.ssh/id_rsa则不执行该shell命令

ansible -i /etc/ansible/hosts local -m shell -a \’pwd creates=~/.ssh/id_rsa\’

5)如果存在~/.ssh/id_rsa则执行该shell命令

ansible -i /etc/ansible/hosts local -m shell -a \’pwd remove=~/haha\’

以上就是ansible的shell模块的解释,后面会带来command,raw,script模块的使用分享。

博主:测试生财

座右铭:专注测试与自动化,致力提高研发效能;通过测试精进完成原始积累,通过读书理财奔向财务自由。 

csdn:https://blog.csdn.net/ccgshigao

博客园:https://www.cnblogs.com/qa-freeroad/

51cto:https://blog.51cto.com/14900374

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » ansible常用模块介绍:shell