中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ansible-playbook 使用詳解

發布時間:2020-06-28 22:27:38 來源:網絡 閱讀:6580 作者:hello_cjq 欄目:開發技術

1.  playbook參數詳解:

hosts:hosts 用于指定要執行指定任務的主機其可以是一個或多個由冒號分隔主機組。
user:root     指定遠程主機上執行任務的用戶
remote_user:root
vars:變量
tasks:任務
  - name:描述
module:options
如:serverice name=httpd state=running
 shell:/sbin/setenforce 0
handlers:觸發條件
files:文件賦權
template:模板


tags 用于讓用戶選擇運行或略過playbook中的部分代碼。ansible具有冪等性因此會自動跳過沒有變化的部分即便如此有些代碼為測試其確實沒有發生變化的時間依然會非常地長。

此時如果確信其沒有變化就可以通過tags跳過此些代碼片斷。


循環:

循環with_items:
---
- hosts: testhost
 user: root
 tasks:
   - name: change mod for file
     file: path=/tmp/{{ item }} mode=600 owner=root group=root
     with_items:
       - 1.txt
       - 2.txt
- 3.txt



條件判斷使用handlers模塊:

---
- hosts: testhost
 remote_user: root
 tasks:
   - name: test copy
     copy: src=/tmp/1.txt dest=/tmp/2.txt
     notify: test handlers   
 handlers:
   - name: test handlers
    shell: echo "111111" >> /tmp/2.txt

如果要使用handlers模塊,則需要調用notify: test handlers是handlers模塊的name,要保持一致。

ansible-playbook 使用詳解

從ansible主上拷貝1.txt到遠程服務器2.txt,只有到copy完成了,才會執行handlers。


條件判斷條件when:

---
- hosts: testhost
 remote_user: root
 gather_facts: True
 tasks:
   - name: use when
     shell: touch /tmp/when.txt
     when: ansible_system_vendor == "IBM"

注意變量要寫對,不能寫數組,數組的要注意.

cat /tmp/when.yml :

ansible-playbook 使用詳解






向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

德昌县| 额济纳旗| 萨嘎县| 庄河市| 诸城市| 泸水县| 会东县| 安阳县| 沙河市| 榆林市| 贞丰县| 鄂尔多斯市| 文山县| 阳曲县| 博罗县| 武清区| 乌兰浩特市| 永兴县| 册亨县| 班戈县| 英吉沙县| 石台县| 保靖县| 成安县| 建湖县| 平度市| 田阳县| 天柱县| 临高县| 泌阳县| 永泰县| 佳木斯市| 柘荣县| 沛县| 巩留县| 贵阳市| 临朐县| 闽侯县| 都匀市| 五常市| 长武县|