forked from ComplianceAsCode/content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate_ANSIBLE_service_disabled
44 lines (40 loc) · 1.24 KB
/
template_ANSIBLE_service_disabled
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# platform = multi_platform_all
# reboot = false
# strategy = disable
# complexity = low
# disruption = low
{{%- if init_system == "systemd" %}}
- name: Disable service {{{ SERVICENAME }}}
block:
- name: Gather the service facts
service_facts:
- name: Disable service {{{ SERVICENAME }}}
systemd:
name: "{{{ DAEMONNAME }}}.service"
enabled: "no"
state: "stopped"
masked: "yes"
when: '"{{{ DAEMONNAME }}}.service" in ansible_facts.services'
- name: "Unit Socket Exists - {{{ DAEMONNAME }}}.socket"
command: systemctl list-unit-files {{{ DAEMONNAME }}}.socket
args:
warn: False
register: socket_file_exists
changed_when: False
ignore_errors: True
check_mode: False
- name: Disable socket {{{ SERVICENAME }}}
systemd:
name: "{{{ DAEMONNAME }}}.socket"
enabled: "no"
state: "stopped"
masked: "yes"
when: '"{{{ DAEMONNAME }}}.socket" in socket_file_exists.stdout_lines[1]'
{{% elif init_system == "upstart" %}}
- name: Stop {{{ SERVICENAME }}}
command: /sbin/service '{{{ DAEMONNAME }}}' stop
- name: Switch off {{{ SERVICENAME }}}
command: /sbin/chkconfig --level 0123456 '{{{ DAEMONNAME }}}' off
{{%- else %}}
JINJA TEMPLATE ERROR: Unknown init system '{{{ init_system }}}'
{{%- endif %}}