Renamed cymais to infinito and did some other optimations and logout implementations

This commit is contained in:
2025-07-29 16:35:42 +02:00
parent a9e7ed3605
commit 44e0fea0b2
499 changed files with 1740 additions and 1587 deletions

View File

@@ -1,25 +1,25 @@
- name: Find all cymais.service units
- name: Find all infinito.service units
find:
paths: /etc/systemd/system
patterns: '*.cymais.service'
register: cymais_services
patterns: '*.infinito.service'
register: infinito_services
- name: Disable and stop each cymais service
- name: Disable and stop each infinito service
become: true
systemd:
name: "{{ item.path | basename }}"
enabled: no
state: stopped
loop: "{{ cymais_services.files }}"
loop: "{{ infinito_services.files }}"
loop_control:
label: "{{ item.path | basename }}"
- name: Remove all cymais.service files
- name: Remove all infinito.service files
become: true
file:
path: "{{ item.path }}"
state: absent
loop: "{{ cymais_services.files }}"
loop: "{{ infinito_services.files }}"
loop_control:
label: "{{ item.path | basename }}"