diff options
author | Djalal Harouni <tixxdz@opendz.org> | 2016-10-24 15:46:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-24 15:46:36 +0200 |
commit | 9b3313d678a4f666e9ddc086a8e92652c9294411 (patch) | |
tree | 45cbadf1e22659946bd2555cfc546cc0b688c202 /test/test-execute/exec-supplementarygroups-multiple-groups-withuid.service | |
parent | 888067812c01964048628ca02aad4f6f977b0e08 (diff) | |
parent | 50ca7a35a1c4b7550bc7f219d1c54052a2662445 (diff) |
Merge pull request #4469 from endocode/djalal/groups-test
test: lets add more tests to cover SupplementaryGroups= cases.
Diffstat (limited to 'test/test-execute/exec-supplementarygroups-multiple-groups-withuid.service')
-rw-r--r-- | test/test-execute/exec-supplementarygroups-multiple-groups-withuid.service | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test-execute/exec-supplementarygroups-multiple-groups-withuid.service b/test/test-execute/exec-supplementarygroups-multiple-groups-withuid.service new file mode 100644 index 0000000000..00523e383b --- /dev/null +++ b/test/test-execute/exec-supplementarygroups-multiple-groups-withuid.service @@ -0,0 +1,8 @@ +[Unit] +Description=Test for Supplementary Group with multiple groups and Uid=1 + +[Service] +ExecStart=/bin/sh -x -c 'test "$$(id -G)" = "1 2 3" && test "$$(id -g)" = "1" && test "$$(id -u)" = "1"' +Type=oneshot +User=1 +SupplementaryGroups=1 2 3 |