This commit is contained in:
2024-10-08 06:41:47 +02:00
parent 1ef33c16af
commit 7300938372
103 changed files with 619 additions and 198 deletions

View File

@@ -0,0 +1,2 @@
dependencies:
- role: base_info

View File

@@ -0,0 +1,17 @@
- name: Create group
when: not mac_os
become: true
tags: always
ansible.builtin.group:
name: "{{ username }}"
state: present
- name: Create user
when: not mac_os
become: true
tags: always
ansible.builtin.user:
name: "{{ username }}"
update_password: "on_create"
create_home: yes
group: "{{ username }}"