diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2016-06-26 16:23:40 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-06-27 11:18:18 +0000 |
commit | 41e38db75810a3d58005c6f1f3745e117c5011a6 (patch) | |
tree | cf11cb19343da2b53c8cfc6e7b56cf0178c2deb6 /main/qemu/qemu.pre-install | |
parent | d9a924f2e457e76b4a6a3eba2a03e8dc8203340a (diff) | |
download | aports-41e38db75810a3d58005c6f1f3745e117c5011a6.tar.bz2 aports-41e38db75810a3d58005c6f1f3745e117c5011a6.tar.xz |
main/qemu: fix chown/chmod for qemu-bridge-helper and gid of qemu group
gid 35 is already reserved for group "games"
Diffstat (limited to 'main/qemu/qemu.pre-install')
-rw-r--r-- | main/qemu/qemu.pre-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/qemu/qemu.pre-install b/main/qemu/qemu.pre-install index 542f2a8296..2ef9b5366d 100644 --- a/main/qemu/qemu.pre-install +++ b/main/qemu/qemu.pre-install @@ -1,6 +1,6 @@ #!/bin/sh addgroup -S -g 34 kvm 2>/dev/null -addgroup -S -g 35 qemu 2>/dev/null +addgroup -S -g 36 qemu 2>/dev/null exit 0 |