mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
16 lines
435 B
Text
16 lines
435 B
Text
_libvirt_setup() {
|
|
systemd-tmpfiles --create libvirt.conf
|
|
}
|
|
|
|
post_install() {
|
|
_libvirt_setup || return 1
|
|
groupadd -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() {
|
|
_libvirt_setup || return 1
|
|
echo ">>> You may need to run 'rm -rf ~/.libvirt'"
|
|
}
|