1. command,shell,raw,script模块的作用和区别

(1)command模块

command模块可以帮助我们在远程主机上执行命令

注意:使用command模块在远程主机中执行命令时,不会经过远程主机的shell处理,在使用command模块时,如果需要执行的命令中含有重定向、管道符等操作时,这些符号也会失效,比如”<“, “>”, “|”, “;” 和 “&” 这些符号,如果你需要这些功能,可以参考后面介绍的shell模块,还有一点需要注意,如果远程节点是windows操作系统,则需要使用win_command模块。

(2)shell模块

shell模块可以帮助我们在远程主机上执行命令,与command模块不同的是,shell模块在远程主机中执行命令时,会经过远程主机上的/bin/sh程序处理

(3)script模块

script模块可以帮助我们在远程主机上执行ansible主机上的脚本,也就是说,脚本一直存在于ansible主机本地,不需要手动拷贝到远程主机后再执行。

(4)raw模块

不需要受管主机上安装Python,直接使用远程shell运行命令,通常用于无法安装Python的系统(例如网络设备等)。主要用于执行一些低级的,脏的SSH命令,而不是通过command模块。 只适用于下列两种场景,第一种情况是在较老的(Python 2.4和之前的版本)主机上,另一种情况是对任何没有安装Python的设备(如路由器)。 在任何其他情况下,使用shell或command模块更为合适。就像script模块一样,raw模块不需要远程系统上的python

command、shell模块:

相同点:要求受管主机上安装Python。

不同点:command可以在受管主机上执行shell命令,但是不支持环境变量和操作符(例如 '|', '<', '>', '&')

shell模块调用的/bin/sh指令执行。

(1)command 模块的使用:

去执行一个脚本文件command.sh, command.sh文件的功能是echo "I am command module"

在被控制主机上创建一个脚本文件

给脚本文件添加可执行的权限

ansible shell模块with_items ansible shell模块和script模块区别_Python

ansible shell模块with_items ansible shell模块和script模块区别_服务器_02

(2)shell模块执行命令 ls /root | grep txt

ansible shell模块with_items ansible shell模块和script模块区别_linux_03

(3)raw模块执行pwd命令

ansible shell模块with_items ansible shell模块和script模块区别_运维_04

(4)script模块执行 script.sh文件,文件的内容为 echo "I am script module"

在控制主机上创建一个脚本文件

给脚本文件添加可执行的权限

ansible shell模块with_items ansible shell模块和script模块区别_运维_05

ansible shell模块with_items ansible shell模块和script模块区别_Python_06

2.file模块:

   创建文件,并指定用户,用户组为student, 且权限为600

ansible shell模块with_items ansible shell模块和script模块区别_服务器_07

   创建目录,并指定用户,用户组为student,   且权限为755

ansible shell模块with_items ansible shell模块和script模块区别_linux_08

   创建链接文件

ansible shell模块with_items ansible shell模块和script模块区别_linux_09

   删除第一个创建的文件

ansible shell模块with_items ansible shell模块和script模块区别_服务器_10

3.copy

   复制文件

ansible shell模块with_items ansible shell模块和script模块区别_服务器_11

   复制目录

ansible shell模块with_items ansible shell模块和script模块区别_linux_12

4.fetch

   从被控制主机上取文件

ansible shell模块with_items ansible shell模块和script模块区别_linux_13

5.synchronize

   pull: 从被控制主机上拉取目录

ansible shell模块with_items ansible shell模块和script模块区别_Python_14

   push:往被控制主机上推送目录

ansible shell模块with_items ansible shell模块和script模块区别_服务器_15