blob: 398c1b361f2cedde731675bf15be476f2571d069 (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_install() {
groupadd -r -f libvirt
echo ">>> libvirt runs qemu from nobody:kvm by default"
echo ">>> change the USER if desired in /etc/libvirt/qemu.conf"
echo ">>> See https://wiki.archlinux.org/index.php/Libvirt for more info"
}
post_upgrade() {
echo ">>> You may need to run 'rm -rf ~/.libvirt'"
}
|