diff options
author | Djalal Harouni <tixxdz@opendz.org> | 2016-10-24 12:38:53 +0200 |
---|---|---|
committer | Djalal Harouni <tixxdz@opendz.org> | 2016-10-24 12:38:53 +0200 |
commit | 50ca7a35a1c4b7550bc7f219d1c54052a2662445 (patch) | |
tree | 6036fe660d1f75399d4993f2c3dd1ac393815311 /test/test-execute/exec-supplementarygroups-multiple-groups-withgid.service | |
parent | 60f17f75d10638975ee05bda11cb02ee8b5cbf10 (diff) |
test: lets add more tests to cover SupplementaryGroups= cases.
Diffstat (limited to 'test/test-execute/exec-supplementarygroups-multiple-groups-withgid.service')
-rw-r--r-- | test/test-execute/exec-supplementarygroups-multiple-groups-withgid.service | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test-execute/exec-supplementarygroups-multiple-groups-withgid.service b/test/test-execute/exec-supplementarygroups-multiple-groups-withgid.service new file mode 100644 index 0000000000..5c62c1d639 --- /dev/null +++ b/test/test-execute/exec-supplementarygroups-multiple-groups-withgid.service @@ -0,0 +1,8 @@ +[Unit] +Description=Test for Supplementary Group with multiple groups and Group=1 + +[Service] +ExecStart=/bin/sh -x -c 'test "$$(id -G)" = "1 2 3" && test "$$(id -g)" = "1" && test "$$(id -u)" = "0"' +Type=oneshot +Group=1 +SupplementaryGroups=1 2 3 |