diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-09-04 18:09:20 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-09-04 18:45:44 +0200 |
commit | a9030b81c154c3ec92227d04cad6b13cc1125608 (patch) | |
tree | 9448f1a4501fc0346605925dd2ddc1d925942fdc /test/udev-test.pl | |
parent | test-execute: check if private directories have bad permissions before runnin... (diff) | |
download | systemd-a9030b81c154c3ec92227d04cad6b13cc1125608.tar.xz systemd-a9030b81c154c3ec92227d04cad6b13cc1125608.zip |
udev-test: do not rely on "mail" group being defined
"audio" should be there, at least we declare it. "mail" nowadays is less
likely to exist than in the past.
Fixes one of the items in #16942.
Diffstat (limited to 'test/udev-test.pl')
-rwxr-xr-x | test/udev-test.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/udev-test.pl b/test/udev-test.pl index 2480e4120b..1ab6828d71 100755 --- a/test/udev-test.pl +++ b/test/udev-test.pl @@ -629,9 +629,9 @@ EOF desc => "textual user/group id", devpath => "/devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda", exp_name => "node", - exp_perms => "root:mail:0660", + exp_perms => "root:audio:0660", rules => <<EOF -SUBSYSTEMS=="scsi", KERNEL=="sda", SYMLINK+="node", OWNER="root", GROUP="mail" +SUBSYSTEMS=="scsi", KERNEL=="sda", SYMLINK+="node", OWNER="root", GROUP="audio" EOF }, { |