Home | Mirror | Search |
定義組
# cat /etc/ansible/hosts [www] 192.168.2.23
創建yml檔案
# cat test.yml --- - hosts: www user: root tasks: - name: no selinux action: command /usr/sbin/setenforce 0 - name: no iptables action: service name=iptables state=stopped - name: made up task just to show variables work here action: command /bin/echo release is $release
執行任務
# ansible-playbook test.yml -u root -T 1 PLAY [www] ********************* GATHERING FACTS ********************* ok: [192.168.2.23] TASK: [no selinux] ********************* ok: [192.168.2.23] TASK: [no iptables] ********************* ok: [192.168.2.23] TASK: [made up task just to show variables work here] ********************* ok: [192.168.2.23] PLAY RECAP ********************* 192.168.2.23 : ok=4 changed=2 unreachable=0 failed=0