]> git.ipfire.org Git - thirdparty/systemd.git/blob - test/test-execute/exec-supplementarygroups-multiple-groups-withuid.service
Merge pull request #10245 from keszybz/coc-file-rename
[thirdparty/systemd.git] / test / test-execute / exec-supplementarygroups-multiple-groups-withuid.service
1 [Unit]
2 Description=Test for Supplementary Group with multiple groups and Uid=1
3
4 [Service]
5 ExecStart=/bin/sh -x -c 'HAVE=; for g in $$(id -G); do test "$$g" = "1" && HAVE=1; done; test "$$HAVE" -eq 1'
6 ExecStart=/bin/sh -x -c 'HAVE=; for g in $$(id -G); do test "$$g" = "2" && HAVE=1; done; test "$$HAVE" -eq 1'
7 ExecStart=/bin/sh -x -c 'HAVE=; for g in $$(id -G); do test "$$g" = "3" && HAVE=1; done; test "$$HAVE" -eq 1'
8 Type=oneshot
9 User=1
10 SupplementaryGroups=1 2 3