updated on Tue Jan 10 12:02:00 UTC 2012
[aur-mirror.git] / libvirt-git / libvirt.install
blob3881386d2db615e147b053f52799e7ff1b19908e
1 _libvirt_setup() {
2   rm -f /usr/lib/python?.?/site-packages/libvirt.pyc
3   echo ">>> To use libvirt as a non-root user:"
4   echo ">>>  Use polkit to grant access."
5   echo ">>>  ...or change the access model in /etc/libvirt/libvirtd.conf."
6   echo ">>>     (see unixperms.patch in PKGBUILD for help)"
7   echo ""
10 post_install() {
11   _libvirt_setup || return 1
12   echo ">>> Be sure to see optdepends as you may find some of them helpfull."
13   echo ">>>  Especially: bridge-utils, dnsmasq, and hal."
14   echo ""
15   echo ">>> To start libvirtd run: '/etc/rc.d/libvirtd start' as root."
16   echo ">>> Add 'libvirtd' to daemons in /etc/rc.conf if you want it to load upon"
17   echo ">>>  booting."
18   echo ""
19   /bin/true
22 post_upgrade() {
23   _libvirt_setup || return 1
24   echo ">>> To finish the upgrade, restart libvirtd by running the command:"
25   echo ">>>  '/etc/rc.d/libvirtd restart' as root or rebooting."
26   echo ">>> You may also need to run 'rm -rf ~/.libvirt'"
27   echo ""
28   /bin/true
31 post_remove() {
32    rm -f /usr/lib/python[0-9].[0-9]/site-packages/libvirt.pyc
33    echo ">>> You may wish to delete the group 'libvirt' if it still exists."
34    echo ">>>  It can be removed by running 'groupdel libvirt' as root."
35    echo ""
36    depmod -a
37    /bin/true