blob: 8509654883c8427c034c80c88e3ba9a24d75f861 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
---
- name: restart_httpd
ansible.builtin.service:
name: httpd
state: restarted
enabled: true
- name: notification_restart
ansible.builtin.debug:
msg: "Restart your box once reactance run is complete"
- name: show_links
ansible.builtin.debug:
msg: "{{ }}"
- name: show_htpasswd_passwords
ansible.builtin.debug:
msg: "{{ htpasswd_passwords | format_userpass_output(ansible_default_ipv4.address|default(ansible_all_ipv4_addresses[0])) }}"
- name: cleanup_temp_dir
ansible.builtin.file:
path: /var/reactance/.temp
state: absent
|