summaryrefslogtreecommitdiff
path: root/test/test-execute/exec-dynamicuser-fixeduser-games.service
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2018-07-26 11:59:53 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2018-07-26 16:32:10 +0900
commit9f82d685f3ee2af3a534b05f2826295375133e9e (patch)
tree0cdd3ce3266bc8049ac0b7ba4928a3f28727bf03 /test/test-execute/exec-dynamicuser-fixeduser-games.service
parent25a1df7c652d180eb716412885c3ce3fcc1bbded (diff)
downloadsystemd-9f82d685f3ee2af3a534b05f2826295375133e9e.tar.gz
test: add tests for DynamicUser= with static User= whose UID and GID are different
Diffstat (limited to 'test/test-execute/exec-dynamicuser-fixeduser-games.service')
-rw-r--r--test/test-execute/exec-dynamicuser-fixeduser-games.service11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/test-execute/exec-dynamicuser-fixeduser-games.service b/test/test-execute/exec-dynamicuser-fixeduser-games.service
new file mode 100644
index 0000000000..1cc9518fc6
--- /dev/null
+++ b/test/test-execute/exec-dynamicuser-fixeduser-games.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=Test DynamicUser with static User= whose uid and gid are different
+# On Ubuntu or Debian, user games has uid==5 and gid==60.
+
+[Service]
+Type=oneshot
+ExecStart=/bin/sh -x -c 'test "$$(id -nG)" = "games" && test "$$(id -ng)" = "games" && test "$$(id -nu)" = "games"'
+# Multiple ExecStart= lines causes the issue #9702.
+ExecStart=/bin/sh -x -c 'test "$$(id -nG)" = "games" && test "$$(id -ng)" = "games" && test "$$(id -nu)" = "games"'
+DynamicUser=yes
+User=games