Differences From Artifact [6e58d0897a]:
- File debian/postinst — part of check-in [648764b0ec] at 2017-08-30 11:45:58 on branch trunk — Fixed typo in unit file. Incremented debian package version (user: vitus, size: 1060) [annotate] [blame] [check-ins using]
To Artifact [9ba20bb7bc]:
- File debian/postinst — part of check-in [665cd70e2c] at 2017-08-30 18:12:01 on branch trunk — Added kvm user creation into postinst script (user: vitus, size: 1167) [annotate] [blame] [check-ins using]
| ︙ | |||
18 19 20 21 22 23 24 25 26 27 28 29 30 31 | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | + |
# 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
id -u kvm >/dev/null 2>&1 || adduser --system --ingroup kvm --home /home/virtual/vws --no-create-home kvm
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
|
| ︙ |