在之前的文章中,我們已經(jīng)對(duì) Ansible 以及 Ansible Adhoc 做了講解套耕,下面會(huì)對(duì) Ansible 的常用模塊進(jìn)行講解谁帕,主要包括 命令模塊、文件處理模塊冯袍、包管理模塊匈挖、服務(wù)管理模塊等。
今天就帶大家熟悉一下 Ansible 的幾個(gè)命令模塊康愤,包括:
-
command
- 在遠(yuǎn)程節(jié)點(diǎn)上執(zhí)行命令 -
shell
- 讓遠(yuǎn)程主機(jī)在 shell 進(jìn)程下執(zhí)行命令 -
raw
- 在沒(méi)有 Python 環(huán)境的主機(jī)上執(zhí)行命令
command 模塊
-
command
模塊用于在給的的節(jié)點(diǎn)上運(yùn)行系統(tǒng)命令关划,比如 echo hello。 - 不是調(diào)用的 shell 的指令翘瓮,所以沒(méi)有 bash 的環(huán)境變量贮折,也不能使用 shell 的一些操作方式,因此不支持像
$HOME
這樣的變量资盅,以及<
调榄、>
、|
呵扛、;
和&
等都是無(wú)效的每庆。也就是在command
模塊中 無(wú)法使用管道符。
模塊參數(shù)
名稱 | 必選 | 備注 |
---|---|---|
chdir | no | 運(yùn)行 command 命令前先 cd 到這個(gè)目錄 |
creates | no | 如果這個(gè)參數(shù)對(duì)應(yīng)的文件存在今穿,就不運(yùn)行 command |
removes | no | 如果這個(gè)參數(shù)對(duì)應(yīng)的文件不存在缤灵,就不運(yùn)行 command,與 creates 參數(shù)的作用相反 |
示例
- 列出指定目錄下的文件
# ansible test -m command -a "ls /root"
172.20.21.120 | SUCCESS | rc=0 >>
anaconda-ks.cfg
test.sh
whoami.rst
- 根據(jù)指定文件是否存在判斷是否執(zhí)行
# ansible test -m command -a "ls /root creates=test.sh"
172.20.21.120 | SUCCESS | rc=0 >>
skipped, since test.sh exists
# ansible test -m command -a "ls /root removes=test.sh1"
172.20.21.120 | SUCCESS | rc=0 >>
skipped, since test.sh1 does not exist
- 切換目錄執(zhí)行命令
# ansible test -m command -a "cat test.sh chdir=/root"
172.20.21.120 | SUCCESS | rc=0 >>
#!/bin/bash
i=0
echo $((i+1))
# ansible test -m command -a "sh test.sh chdir=/root"
172.20.21.120 | SUCCESS | rc=0 >>
1
- 無(wú)法使用管道符
# ansible test -m command -a "ls /root | grep test"
172.20.21.120 | FAILED | rc=2 >>
/root:
anaconda-ks.cfg
test.sh
whoami.rstls: 無(wú)法訪問(wèn)|: 沒(méi)有那個(gè)文件或目錄
ls: 無(wú)法訪問(wèn)grep: 沒(méi)有那個(gè)文件或目錄
ls: 無(wú)法訪問(wèn)test: 沒(méi)有那個(gè)文件或目錄non-zero return code
shell模塊
讓遠(yuǎn)程主機(jī)在 shell 進(jìn)程下執(zhí)行命令,從而支持 shell 的特性腮出,如管道等帖鸦。與 command
模塊幾乎相同,但在執(zhí)行命令的時(shí)候調(diào)用的是 /bin/sh
胚嘲。
模塊參數(shù)與 command 模塊相同作儿。
示例
- 切換目錄,執(zhí)行命令并保持輸出
# ansible test -m shell -a "sh test.sh > result chdir=/root"
172.20.21.120 | SUCCESS | rc=0 >>
# ansible test -m shell -a "cat result chdir=/root"
172.20.21.120 | SUCCESS | rc=0 >>
1
raw模塊
簡(jiǎn)介
raw
模塊不需要遠(yuǎn)程系統(tǒng)上的 Python馋劈。
raw
模塊只適用于下列兩種場(chǎng)景攻锰,第一種情況是在較老的(Python 2.4和之前的版本)主機(jī)上,另一種情況是對(duì)任何沒(méi)有安裝 Python 的設(shè)備(如路由器)妓雾。 在其他情況下娶吞,使用 shell
或 command
模塊更為合適。
示例
# ansible test -m raw -a "pwd"
172.20.21.120 | SUCCESS | rc=0 >>
/root
Shared connection to 172.20.21.120 closed.
區(qū)別
command械姻,shell妒蛇,raw 模塊都是 ansible 遠(yuǎn)程執(zhí)行命令的一種指令模式,但是它們的適用還是有一定的區(qū)別策添。
-
command
模塊不是調(diào)用的 shell 的指令材部,所以不能使用 bash 的環(huán)境變量,也不能使用 shell 的一些操作方式唯竹,其他和 shell 沒(méi)有區(qū)別乐导;另外,command 模塊更安全浸颓,因?yàn)樗皇苡脩舡h(huán)境變量的影響物臂。 -
shell
與 command 模塊幾乎相同,但在執(zhí)行命令的時(shí)候使用的是 /bin/sh产上。從而支持 shell 的特性棵磷,如管道等。 -
raw
很多地方和 shell 類似晋涣,更多的地方建議使用 shell 和 command 模塊仪媒。但是如果是使用老版本 python,需要用到 raw谢鹊,又或者是沒(méi)有安裝 python 模塊的客戶端算吩,如路由器。
如果覺得有用佃扼,歡迎關(guān)注我的微信偎巢,有問(wèn)題可以直接交流: