Skip to content

Commit

Permalink
change tester uid to value other than 1000 as this causes problems wi…
Browse files Browse the repository at this point in the history
…th WSL2
  • Loading branch information
KBorm committed Feb 8, 2024
1 parent 4bd5ecc commit c8ef05c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ RUN groupadd -g 999 praktomat && \
useradd -g 999 -u 999 praktomat -s /bin/sh --home /praktomat --create-home --comment "Praktomat Demon" && \
usermod -aG sudo praktomat && \
echo "praktomat:$PASSWORD" | sudo chpasswd && \
# add user tester (uid=1000) \
useradd -g 999 -u 1000 tester -s /bin/false --no-create-home -c "Test Exceution User"
# add user tester (uid=777) \
useradd -g 999 -u 777 tester -s /bin/false --no-create-home -c "Test Exceution User"

# allow user praktomat to execute 'sudo -u tester ...'
# allow user praktomat to start cron
Expand Down
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 4.18.3

change tester uid to value other than 1000 as this causes problems with WSL2


# 4.18.2

* bugfix nginx configuration: large requests
Expand Down
2 changes: 1 addition & 1 deletion src/VERSION.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-

version = "Version 4.18.2 | 20230920"
version = "Version 4.18.3 | 20240208"

0 comments on commit c8ef05c

Please sign in to comment.