mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
18 lines
171 B
Text
18 lines
171 B
Text
|
# kvm: the new package version
|
||
|
post_install() {
|
||
|
groupadd kvm -f -g 78
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install $1
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
#
|
||
|
groupdel kvm
|
||
|
}
|
||
|
|
||
|
op=$1
|
||
|
shift
|
||
|
$op $*
|