Ansible常用模块

Ansible常用模块

文章目录

  • Ansible常用模块
    • 1. ping模块
    • 2. command模块
    • 3. raw模块
    • 4. shell模块
      • 4.1 command、raw、shell模块的区别
    • 5. script模块
    • 6. template模块
    • 7. yum模块
    • 8. copy模块
    • 9. group模块
    • 10. user模块
    • 11. service模块
    • 12. lineinfile模块
    • 13. firewalld模块

1. ping模块

ping模块用于检查指定节点能否连通,主机如果在在线则回复pong

[root@node1 ~]# ansible all -m ping
192.168.100.110 | SUCCESS => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/libexec/platform-python"
    },
    "changed": false,
    "ping": "pong"
}

2. command模块

command模块适合在受管主机上执行简单的命令

[root@node1 ~]# ansible all -m command -a 'ls'
192.168.100.110 | CHANGED | rc=0 >>
1
2
3
4
5
anaconda-ks.cfg

command不支持管道符和重定向功能

[root@node1 ~]# ansible all -m command -a 'echo "ktm" > /opt/abc'			
192.168.100.110 | CHANGED | rc=0 >>
ktm > /opt/abc					//这里可以看到已经将ktm写入/opt/abc文件

[root@node1 ~]# ansible all -m command -a 'cat /opt/abc'
192.168.100.110 | FAILED | rc=1 >> cat: /opt/abc: No such file or directorynon-zero return code	
//opt下没有生成abc文件,前面的写入也就不生效

3. raw模块

raw模块用于在受管主机上执行命令,支持管道符和重定向功能

//支持重定向
[root@node1 ~]# ansible all -m raw -a 'echo "ktm" > /tmp/test'
192.168.100.110 | CHANGED | rc=0 >>
Shared connection to 192.168.100.110 closed.

[root@node1 ~]# ansible all -a 'cat /tmp/test'
192.168.100.110 | CHANGED | rc=0 >>
ktm

//支持管道符
[root@node1 ~]# ansible all -m raw -a 'ls /tmp | grep test'
192.168.100.110 | CHANGED | rc=0 >>
test
Shared connection to 192.168.100.110 closed.

4. shell模块

shell模块可以在受管主机上执行受管主机上的脚本,也可以直接在受管主机上执行命令

shell模块支持管道符与重定向

[root@node1 ~]# ansible all -a 'ls /opt'
192.168.100.110 | CHANGED | rc=0 >>
1.sh

[root@node1 ~]# ansible all -m shell -a '/bin/bash /opt/1.sh %> /opt/abc'
192.168.100.110 | CHANGED | rc=0 >>

[root@node1 ~]# ansible all -a 'cat /opt/abc'
192.168.100.110 | CHANGED | rc=0 >>
hello

4.1 command、raw、shell模块的区别

模块 用途 特点
command 均用于执行shell模块 command不可以使用环境变量,也支持变量操作符,相对shell安全一些
raw 均用于执行shell模块 被执行机器上没安装python环境也可以执行,直接使用shell
shell 均用于执行shell模块 可以使用环境变量,也可使用管道符和重定向

三者均不具备幂等性,如果有可以替代的模块尽量不要使用这三个模块

5. script模块

script模块用于在受管主机上执行ansible主机上的脚本,也就是说脚本一直存在ansible主机本地,不需要手动拷贝到受管主机上去执行

[root@node1 ~]# ls /opt/
test.sh
[root@node1 ~]# ansible all -m script -a '/opt/test.sh &> /tmp/a'
192.168.100.110 | CHANGED => {
    "changed": true,
    "rc": 0,
    "stderr": "Shared connection to 192.168.100.110 closed.\r\n",
    "stderr_lines": [
        "S

你可能感兴趣的:(centos)