반응형
[root@OPENLDAP-TEST ansible]# cat multi_command.yml
---
- name: "command test"
hosts: all
become: true
tasks:
- name: "iptables insert"
command: "{{ item }}"
with_items:
- iptables -D INPUT -s 2.2.2.2
- iptables -D INPUT -s 3.3.3.3
- iptables -D INPUT -s 4.4.4.4
- iptables -D INPUT -s 1.1.1.1 -j ACCEPT
## command, shell 모두 유효
## with_items 로 여러 명령을 내릴수 있음.
반응형
'Automation Tools > Ansible' 카테고리의 다른 글
1.8 ansible | [test][playbook] 파일 내용 수정 (0) | 2021.03.16 |
---|---|
1.7 ansible | [test][playbook] nginx 설치 (0) | 2021.03.16 |
1.5 ansible | [test][playbook] 서비스 데몬 실행 (0) | 2021.03.16 |
1.4 ansible | [test][playbook] 파일 내용 치환 (0) | 2021.03.16 |
1.3 ansible | [test][playbook] 원격지에서 파일 가져오기 (0) | 2021.03.16 |