1. mv restart task yml file into restart_process directory

This commit is contained in:
fumingwei
2020-11-20 15:11:26 +06:00
parent b0c44bbd5a
commit 352b5c5e7a
6 changed files with 20 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
- hosts:
- adc_mcn0
remote_user: root
tasks:
- name: 'certstore service start'
systemd:
name: certstore
enabled: yes
daemon_reload: yes
state: restarted

View File

@@ -0,0 +1,14 @@
- hosts:
- adc_mcn0
- adc_mcn1
- adc_mcn2
- adc_mcn3
remote_user: root
tasks:
- name: 'mrzcpd service start'
systemd:
name: mrzcpd
enabled: yes
daemon_reload: yes
state: restarted

View File

@@ -0,0 +1,5 @@
---
- include: restart_mrzcpd.yml
- include: restart_sapp.yml
- include: restart_certstore.yml
- include: restart_tfe.yml

View File

@@ -0,0 +1,11 @@
- hosts:
- adc_mcn0
remote_user: root
tasks:
- name: 'sapp service start'
systemd:
name: sapp
enabled: yes
daemon_reload: yes
state: restarted

View File

@@ -0,0 +1,13 @@
- hosts:
- adc_mcn1
- adc_mcn2
- adc_mcn3
remote_user: root
tasks:
- name: 'tfe service start'
systemd:
name: tfe
enabled: yes
daemon_reload: yes
state: restarted