diff options
author | Will Thompson <will.thompson@collabora.co.uk> | 2010-12-13 17:22:00 +0000 |
---|---|---|
committer | Ralf Habacker <ralf.habacker@freenet.de> | 2010-12-15 09:42:55 +0100 |
commit | 844134faeed2fcd40c119c4771674db5ce0b42d0 (patch) | |
tree | bc7c622d9424fdaba6599c249ae43d83d69ee1db | |
parent | 4bf509b6fd8309ba7b6e179bd2567b57e8b71b80 (diff) |
policy tests: Use 'nogroup' rather than 'wheel' or 'root'
The excellently-titled commit 197bef8 “Fix test failures on OSX.” broke
the tests on Linux, since there's no wheel group on this side of the
tracks. So here's a group everyone should enjoy.
(If anyone comes along and tells me that DragonflyBSD doesn't have
'nogroup' …)
-rw-r--r-- | test/data/valid-config-files/many-rules.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/data/valid-config-files/many-rules.conf b/test/data/valid-config-files/many-rules.conf index 68ba9d93..e3ff2257 100644 --- a/test/data/valid-config-files/many-rules.conf +++ b/test/data/valid-config-files/many-rules.conf @@ -17,7 +17,7 @@ <deny send_destination="org.freedesktop.System"/> <deny receive_sender="org.freedesktop.System"/> <deny user="root"/> - <deny group="wheel"/> + <deny group="nogroup"/> <allow send_type="error"/> <allow send_type="method_call"/> <allow send_type="method_return"/> @@ -35,7 +35,7 @@ <deny send_destination="org.freedesktop.System"/> <deny receive_sender="org.freedesktop.System"/> <deny user="root"/> - <deny group="wheel"/> + <deny group="nogroup"/> <allow send_type="error"/> <allow send_type="method_call"/> <allow send_type="method_return"/> |