desktop/qemu-kvm/qemu-kvm.install
Adrian Chaves Fernandez (Gallaecio) a9c738d79a Added qemu-kvm and dependency.
2011-10-15 13:51:06 +00:00

17 lines
341 B
Plaintext

post_install() {
groupadd kvm -f -g 78
echo ">>> PLEASE READ FOR KVM USAGE!"
echo ">>> Load the correct KVM module, you will need a KVM capable CPU!"
echo ">>> Add yourself to the group 'kvm'."
echo ">>> Use 'qemu-kvm -enable-kvm' to use KVM."
echo ""
}
post_upgrade() {
post_install $1
}
post_remove() {
groupdel kvm
}