关于Ansible模块 ⑥

转载说明:如果您喜欢这篇文章并打算转载它,请私信作者取得授权。感谢您喜爱本文,请文明转载,谢谢。


内容在继《关于Ansible的模块 ①》《关于Ansible的模块 ②》《关于Ansible的模块 ③》《关于Ansible的模块 ④》《关于ansible的模块 ⑤》之后,继续学习Ansible常用模块之shell模块。

shell模块,在远程节点上通过/bin/sh执行命令。如果一个操作可以通过yum、copy实现,那么建议不要使用shell、command这样通用的命令模块。因为通用的命令模块不会根据具体操作的特点进行状态判断,所以当没有必要重新再执行的时候,它还是会重新执行一遍。

shell模块支持$HOME、、"<"、">"、"|"、";"、"&"等操作。

1. 常用参数

|-------------------|---------|-------------------------------|
| 参数 | 默认值 | 含义 |
| cmd | null | 指定要运行的命令 |
| chdir | null | 在运行命令之前,先进入该目录 |
| creates | null | 如文件存在,则不会运行该步骤 |
| removes | null | 如文件不存在,则不会运行该步骤 |
| executable | null | 更改用于执行命令的shell,需要指定可执行文件的绝对路径 |
| free_form | null | shell模块接受一个自由形式的命令作为字符串来运行 |
| stdin | null | 将命令的stdin直接设置为指定的值 |
| stdin_add_newline | | 是否向标准输入数据追加换行符 |
| warn | | 是否启用任务告警 |

2. 使用示例

2.1 查看远程主机文件是否存在

ansible all -m shell -a "ls /tmp|grep test.sh"

2.2 查看文件内容:

ansible all -m shell -a "cat /tmp/test.sh"

2.3 查看远程主机IP

ansible all -m shell -a "ifconfig ens32|awk -F \"[ ]+\" 'NR==2{print \$3}'"

2.4 创建一个文件并写入内容

ansible all -m shell -a 'echo "this is shell test">>/tmp/shell.txt'

2.5 执行远程主机指定脚本

ansible all -m shell -a "/tmp/test.sh"

2.6 执行命令前更换目录

ansible all -m shell -a 'chdir=/tmp echo "this is shell test">shell.txt'

未完待续......

感谢您的阅读与分享!

相关推荐
Aimyon_363 天前
⾃动化运维利器 Ansible-Jinja2
运维·ansible
zmd-zk4 天前
StructuredStreaming (二)——kafka
分布式·spark·kafka·批处理·实时处理·微批
柒月VII5 天前
【Ansible常用命令+模块+Playbook+Roles】
linux·服务器·ansible
Linux运维技术栈5 天前
生产环境centos8 & Red Hat8部署ansible and 一键部署mysql两主两从ansible脚本预告
运维·数据库·mysql·自动化·ansible
Aimyon_365 天前
⾃动化运维利器 Ansible-最佳实战
linux·运维·ansible
饭桶也得吃饭5 天前
运维工具Ansible部署、配置
运维·服务器·ansible
陪小七许个愿5 天前
Ansible一键部署Kubernetes集群
容器·kubernetes·ansible
Aimyon_365 天前
⾃动化运维利器 Ansible-变量
运维·ansible
Aimyon_365 天前
⾃动化运维利器Ansible-基础
运维·windows·ansible
zmd-zk5 天前
使用dataGrip连接spark
大数据·分布式·spark·批处理