Skip to content
Snippets Groups Projects
Commit 3f86ee23 authored by nimrod's avatar nimrod
Browse files

Transmission user on the Kodi host.

So the permissions are better set. The containers will use the host's
user.
parent 71d093d5
Branches
No related tags found
No related merge requests found
......@@ -71,16 +71,21 @@
remote: flathub-beta
state: present
- name: Create user
- name: Create users
loop:
- kodi
- transmission
loop_control:
index_var: idx
user:
create_home: true
home: /var/lib/kodi
name: kodi
home: /var/lib/{{ item }}
name: '{{ item }}'
password: '!' # pragma: allowlist secret
shell: /bin/false
state: present
system: true
uid: 900
uid: '{{ 900 + idx }}'
notify:
- Restart Xorg
- Restart Kodi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment