mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
17 lines
341 B
Plaintext
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
|
|
}
|