Infrastructure/ansible/roles/container-user/tasks/main.yml

44 lines
1.2 KiB
YAML
Raw Normal View History

2024-02-16 18:01:26 +02:00
---
- name: Check if required parameters are set
ansible.builtin.assert:
that:
2024-02-17 11:00:06 +02:00
- user is defined
2024-02-16 21:04:01 +02:00
- name: Set up as container host
ansible.builtin.include_role:
name: container-host
2024-02-16 18:01:26 +02:00
- name: Create user
ansible.builtin.user:
2024-02-17 11:00:06 +02:00
name: "{{ user }}"
home: "{{ home | default(omit) }}"
uid: "{{ uid | default(omit) }}"
2024-02-16 18:01:26 +02:00
state: present
2024-02-18 09:52:10 +02:00
- name: Add public keys for user '{{ user }}'
ansible.posix.authorized_key:
2024-02-17 11:00:06 +02:00
user: "{{ user }}"
key: "{{ lookup('file', '../../access/keys/' + item + '.pub') }}"
state: present # Note: we don't remove other/existing keys
2024-02-17 11:00:06 +02:00
with_items: "{{ global_ssh_keys + (ssh_keys[user] | default([])) + (ssh_keys['*'] | default([])) }}"
2024-02-16 21:04:01 +02:00
- name: Create unit files dir
ansible.builtin.file:
path: ~/.config/containers/systemd
state: directory
become: true
2024-02-17 11:00:06 +02:00
become_user: "{{ user }}"
2024-02-16 21:04:01 +02:00
2024-02-16 18:01:26 +02:00
# Note: We check whether lingering is already enabled so we show as OK/skipped instead of changed
- name: Check if user is lingering
2024-02-16 21:04:01 +02:00
ansible.builtin.stat:
2024-02-17 11:00:06 +02:00
path: "/var/lib/systemd/linger/{{ user }}"
2024-02-16 18:01:26 +02:00
register: user_lingering
- name: Enable session lingering
2024-02-17 11:00:06 +02:00
ansible.builtin.command: "loginctl enable-linger {{ user }}"
2024-02-16 18:01:26 +02:00
when:
2024-02-16 21:04:01 +02:00
- not user_lingering.stat.exists