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

36 lines
868 B
YAML
Raw Permalink 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
2024-02-20 09:48:10 +02:00
ansible.builtin.include_role:
name: user
2024-02-16 21:04:01 +02:00
- name: Create unit files dir
ansible.builtin.file:
path: ~/.config/containers/systemd
state: directory
2024-02-19 10:56:04 +02:00
mode: "755"
2024-02-16 21:04:01 +02:00
become: true
2024-02-17 11:00:06 +02:00
become_user: "{{ user }}"
2024-02-16 21:04:01 +02:00
2024-02-19 10:56:04 +02:00
# Note: We check whether lingering is already enabled
# so we don't execute the command if not needed
2024-02-16 18:01:26 +02:00
- 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
2024-02-19 10:56:04 +02:00
changed_when: not user_lingering.stat.exists