74 lines
2.5 KiB
YAML
74 lines
2.5 KiB
YAML
- name: "Stop services"
|
|
ansible.builtin.service:
|
|
name: "{{ item.value['doc'] }}"
|
|
state: stopped
|
|
when: item.value['manage'] and item.value['activate'] and item.value['doc'].endswith('.service') and not item.value['doc'].endswith('@.service') and item.value['engine'] and item.value['doc'] in services
|
|
loop: "{{ vars[inventory_hostname]['services'] | dict2items }}"
|
|
loop_control:
|
|
label: "{{ item.value['doc'] }}"
|
|
|
|
- name: "Remove old config files"
|
|
file:
|
|
path: /usr/local/lib/
|
|
state: "{{ item }}"
|
|
mode: "0700"
|
|
with_items:
|
|
- absent
|
|
- directory
|
|
|
|
- name: "Copy config files"
|
|
unarchive:
|
|
remote_src: true
|
|
src: "/tmp/new_configurations/host.tar"
|
|
dest: /usr/local/lib/
|
|
owner: root
|
|
group: root
|
|
|
|
- name: "Execute systemd-tmpfiles"
|
|
command: /usr/bin/systemd-tmpfiles --create --clean --remove -E --exclude-prefix=/tmp
|
|
|
|
- name: "Remove tmpfiles files directory"
|
|
local_action:
|
|
module: file
|
|
path: /usr/local/lib/tmpfiles.d/
|
|
state: absent
|
|
|
|
- name: "Reload systemd services configuration"
|
|
ansible.builtin.systemd:
|
|
daemon_reload: yes
|
|
|
|
- name: "Enable services"
|
|
when: item.value['manage'] and item.value['activate'] and '@.service' not in item.value['doc']
|
|
ansible.builtin.service:
|
|
name: "{{ item.value['doc'] }}"
|
|
enabled: yes
|
|
loop: "{{ vars[inventory_hostname]['services'] | dict2items }}"
|
|
loop_control:
|
|
label: "{{ item.value['doc'] }}"
|
|
|
|
- name: "Disable services"
|
|
when: item.value['manage'] and not item.value['activate'] and not item.value['undisable'] and '@.service' not in item.value['doc']
|
|
ansible.builtin.service:
|
|
name: "{{ item.value['doc'] }}"
|
|
enabled: no
|
|
loop: "{{ vars[inventory_hostname]['services'] | dict2items }}"
|
|
loop_control:
|
|
label: "{{ item.value['doc'] }}"
|
|
|
|
- name: "Start services"
|
|
when: item.value['manage'] and item.value['activate'] and item.value['doc'].endswith('.service') and not item.value['doc'].endswith('@.service') and item.value['engine']
|
|
ansible.builtin.service:
|
|
name: "{{ item.value['doc'] }}"
|
|
state: started
|
|
loop: "{{ vars[inventory_hostname]['services'] | dict2items }}"
|
|
loop_control:
|
|
label: "{{ item.value['doc'] }}"
|
|
|
|
- name: "Restart services"
|
|
when: item.value['manage'] and item.value['activate'] and item.value['doc'].endswith('.service') and not item.value['doc'].endswith('@.service') and not item.value['engine']
|
|
ansible.builtin.service:
|
|
name: "{{ item.value['doc'] }}"
|
|
state: restarted
|
|
loop: "{{ vars[inventory_hostname]['services'] | dict2items }}"
|
|
loop_control:
|
|
label: "{{ item.value['doc'] }}"
|