mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-17 17:26:42 +02:00
12 lines
401 B
YAML
12 lines
401 B
YAML
- name: "pkgmgr install '{{ SYS_SERVICE_SUFFIX }}'"
|
|
include_role:
|
|
name: pkgmgr-install
|
|
vars:
|
|
package_name: "{{ UNIT_SUFFIX_REMOVER_PACKAGE }}"
|
|
|
|
- name: Remove all '{{ SYS_SERVICE_SUFFIX }}' files with '{{ UNIT_SUFFIX_REMOVER_PACKAGE }}'
|
|
command: "{{ UNIT_SUFFIX_REMOVER_PACKAGE }} -s '{{ SOFTWARE_NAME }}'"
|
|
|
|
- name: Reload systemd daemon
|
|
command: systemctl daemon-reload
|
|
become: true |