17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package
case "$1" in
configure)
update-rc.d vws defaults
chmod u+s /usr/lib/qemu/qemu-bridge-helper
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
|
|
|
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package
case "$1" in
configure)
update-rc.d vws defaults
dpkg-statoverride --update --add root kvm 4750 /usr/lib/qemu/qemu-bridge-helper
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
|