added support for systemd management
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
2021-08-11 21:31:40 +02:00
parent 1b3337d422
commit bc7343a1f3
3 changed files with 21 additions and 7 deletions

View File

@ -15,4 +15,13 @@
- include_tasks: update-Arch.yml
when:
- ansible_os_family == 'Archlinux'
- ansible_os_family == 'Archlinux'
- name: stop services
become: yes
systemd:
name: "{{ item }}"
state: stopped
enabled: no
with_items: stop_service_list
when: "CI_RUN != true"