반응형
[root@ANSIBLE ansible]# cat lineinfile.yml
---
-
hosts: test02
become: true
tasks:
-
lineinfile:
path: /etc/nginx/nginx.conf
line: include /etc/nginx/conf.d/*.conf;
state: present
notify:
- restart nginx
handlers:
- name: restart nginx
service:
name: nginx
state: restarted
## 파일 마지막에 추가됨(있으면 추가 안됨) 그리고 재시작
## state 파리미터
## absent : 삭제
반응형
'Automation Tools > Ansible' 카테고리의 다른 글
2.1 ansible | [roles][CentOS 시스템 초기 설정] README (0) | 2021.03.16 |
---|---|
1.9 ansible | [test][playbook] docker container start|stop (0) | 2021.03.16 |
1.7 ansible | [test][playbook] nginx 설치 (0) | 2021.03.16 |
1.6 ansible | [test][playbook] multi command (0) | 2021.03.16 |
1.5 ansible | [test][playbook] 서비스 데몬 실행 (0) | 2021.03.16 |