summaryrefslogtreecommitdiff
path: root/community/libvirt/libvirt.install
diff options
context:
space:
mode:
Diffstat (limited to 'community/libvirt/libvirt.install')
-rw-r--r--community/libvirt/libvirt.install27
1 files changed, 4 insertions, 23 deletions
diff --git a/community/libvirt/libvirt.install b/community/libvirt/libvirt.install
index 32c28d559..efb652a88 100644
--- a/community/libvirt/libvirt.install
+++ b/community/libvirt/libvirt.install
@@ -1,38 +1,19 @@
_libvirt_setup() {
systemd-tmpfiles --create libvirt.conf
- rm -f /usr/lib/python?.?/site-packages/libvirt.pyc
- echo ">>> To use libvirt as a non-root user:"
- echo ">>> Use polkit to grant access."
- echo ">>> ...or change the access model in /etc/libvirt/libvirtd.conf."
- echo ">>> (see unixperms.patch in PKGBUILD for help)"
- echo ""
}
post_install() {
_libvirt_setup || return 1
- echo ">>> Be sure to see optdepends as you may find some of them helpfull."
- echo ">>> Especially: bridge-utils, dnsmasq, and hal."
- echo ""
- echo ">>> To start libvirtd run: '/etc/rc.d/libvirtd start' as root."
- echo ">>> Add 'libvirtd' to daemons in /etc/rc.conf if you want it to load upon"
- echo ">>> booting."
- echo ""
+ echo ">>> See https://wiki.archlinux.org/index.php/Libvirt for more info"
}
post_upgrade() {
_libvirt_setup || return 1
- echo ">>> To finish the upgrade, restart libvirtd by:"
- echo ">>> 'systemctl restart libvirtd' as root (systemd) or"
- echo ">>> '/etc/rc.d/libvirtd restart' as root (initscripts) or"
- echo ">>> rebooting."
- echo ">>> You may also need to run 'rm -rf ~/.libvirt'"
- echo ""
+ echo ">>> You may need to run 'rm -rf ~/.libvirt'"
+ echo ">>> libvirt runs qemu from nobody:nobody by default"
+ echo ">>> change it in /etc/libvirt/qemu.conf"
}
post_remove() {
rm -f /usr/lib/python[0-9].[0-9]/site-packages/libvirt.pyc
- echo ">>> You may wish to delete the group 'libvirt' if it still exists."
- echo ">>> It can be removed by running 'groupdel libvirt' as root."
- echo ""
- depmod -a
}