]> git.phdru.name Git - ansible.git/blob - playbooks/roles/debian/remove-systemd/tasks/remove-systemd.yml
Feat(debian/remove-systemd): Remove SystemD
[ansible.git] / playbooks / roles / debian / remove-systemd / tasks / remove-systemd.yml
1 - name: Purge SystemD
2   become: true
3   apt:
4     autoclean: yes
5     autoremove: yes
6     install_recommends: no
7     name: ['systemd', 'libnss-systemd']
8     purge: yes
9     state: absent
10     update_cache: no
11   register: purged