diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2024-09-20 03:58:11 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2024-09-20 03:58:38 +0200 |
commit | f2d133b81d98eb84acabef11b0bd919a98d5d13d (patch) | |
tree | 673bc6d8c13ee57a084f8addf4865c7305c0de5a /tasks | |
parent | 886afa0f9a261c239eaad0744878f63db7ee2d68 (diff) |
webmap-download: Use a dedicated system group.
It will be shared between _webmap-* system users, which will be handy
to share lock files.
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/webmap.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tasks/webmap.yml b/tasks/webmap.yml index 10a6555..ff212e5 100644 --- a/tasks/webmap.yml +++ b/tasks/webmap.yml @@ -64,9 +64,13 @@ - meta: flush_handlers +- name: Create system group '_webmap' + group: name=_webmap system=true + state=present + - name: Create system user '_webmap-download' user: name=_webmap-download system=true - group=nogroup + group=_webmap createhome=false home=/nonexistent shell=/usr/sbin/nologin @@ -95,7 +99,7 @@ - name: Create directory /var/cache/webmap file: path=/var/cache/webmap state=directory - owner=_webmap-download group=nogroup + owner=_webmap-download group=root mode=0755 - name: Copy webmap-download@.service |