반응형
[root@OPENLDAP-TEST ansible]# cat setvice.yml
---
- name: "sservice test"
hosts: test02
become: true
tasks:
- name: "service test"
service:
name: docker
state: started
## service관련 state 파라미터
## started : 서비스 시작
## stopped : 서비스 종료
## restarted : 서비스 재시작
## reloaded : 서비스 리로드
반응형
'Automation Tools > Ansible' 카테고리의 다른 글
1.7 ansible | [test][playbook] nginx 설치 (0) | 2021.03.16 |
---|---|
1.6 ansible | [test][playbook] multi command (0) | 2021.03.16 |
1.4 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 |