SHA256
1
0

Migrate to new apps role

This commit is contained in:
2026-02-02 01:33:38 -05:00
parent 10e0d7ad9c
commit 6aefc82163
41 changed files with 616 additions and 905 deletions

View File

@@ -1,6 +1,13 @@
- name: Set user shell
- name: Create user and set shell
ansible.builtin.user:
name: "{{ item.name }}"
shell: "{{ item.shell }}"
loop: "{{ users }}"
become: true
- name: Enable lingering for user services
ansible.builtin.command:
cmd: "loginctl enable-linger {{ item.name }}"
loop: "{{ users }}"
changed_when: false
become: true