Merge "Switch lodgeit to run under a dedicated user"

This commit is contained in:
Zuul 2021-12-09 16:58:07 +00:00 committed by Gerrit Code Review
commit 0645a481d0
2 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,18 @@
- name: Create lodgeit group
group:
name: "lodgeit"
gid: "10100"
system: yes
- name: Create lodgeit user
user:
name: "lodgeit"
group: "lodgeit"
uid: "10100"
home: "/var/lib/lodgeit"
create_home: yes
shell: /bin/bash
system: yes
- name: Ensure /etc/lodgeit-compose directory - name: Ensure /etc/lodgeit-compose directory
file: file:
state: directory state: directory

View File

@ -25,6 +25,7 @@ services:
- mariadb - mariadb
restart: always restart: always
network_mode: host network_mode: host
user: "10100:10100"
command: ['/bin/bash', '-c', 'echo "*** Starting"; sleep 30; /usr/local/bin/uwsgi'] command: ['/bin/bash', '-c', 'echo "*** Starting"; sleep 30; /usr/local/bin/uwsgi']
logging: logging:
driver: syslog driver: syslog