diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-07-26 11:59:53 +0900 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-07-26 16:32:10 +0900 |
commit | 9f82d685f3ee2af3a534b05f2826295375133e9e (patch) | |
tree | 0cdd3ce3266bc8049ac0b7ba4928a3f28727bf03 /test/test-execute | |
parent | 25a1df7c652d180eb716412885c3ce3fcc1bbded (diff) | |
download | systemd-9f82d685f3ee2af3a534b05f2826295375133e9e.tar.gz |
test: add tests for DynamicUser= with static User= whose UID and GID are different
Diffstat (limited to 'test/test-execute')
-rw-r--r-- | test/test-execute/exec-dynamicuser-fixeduser-adm.service | 11 | ||||
-rw-r--r-- | test/test-execute/exec-dynamicuser-fixeduser-games.service | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/test/test-execute/exec-dynamicuser-fixeduser-adm.service b/test/test-execute/exec-dynamicuser-fixeduser-adm.service new file mode 100644 index 0000000000..90040ee533 --- /dev/null +++ b/test/test-execute/exec-dynamicuser-fixeduser-adm.service @@ -0,0 +1,11 @@ +[Unit] +Description=Test DynamicUser with static User= whose uid and gid are different +# On Fedora, user adm has uid==3 and gid==4. + +[Service] +Type=oneshot +ExecStart=/bin/sh -x -c 'test "$$(id -nG)" = "adm" && test "$$(id -ng)" = "adm" && test "$$(id -nu)" = "adm"' +# Multiple ExecStart= lines causes the issue #9702. +ExecStart=/bin/sh -x -c 'test "$$(id -nG)" = "adm" && test "$$(id -ng)" = "adm" && test "$$(id -nu)" = "adm"' +DynamicUser=yes +User=adm 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 |