반응형
[root@ANSIBLE ansible]# cat file_replace.yml
---
- name: "replace file"
hosts: test
become: true
tasks:
- name: "file replcae"
replace:
path: /etc/hosts
regexp: "192.168.6.135 docker2.plo.plo docker2"
replace: "192.168.6.135 docker5.plo.plo docker5"
## regexp 내용을 -> replace 내용으로 변경
반응형
'Automation Tools > Ansible' 카테고리의 다른 글
1.6 ansible | [test][playbook] multi command (0) | 2021.03.16 |
---|---|
1.5 ansible | [test][playbook] 서비스 데몬 실행 (0) | 2021.03.16 |
1.3 ansible | [test][playbook] 원격지에서 파일 가져오기 (0) | 2021.03.16 |
1.2 ansible | [test][playbook] 파일 복사와 삭제 (0) | 2021.03.16 |
1.1 ansible | [test][playbook] 사용자 계정 추가 (0) | 2021.03.16 |