repo.or.cz
/
aur-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git]
/
vdesktop
/
vdesktop.install
blob
d76bf23515398dc4da0acfdada434d580c9405d7
1
post_install() {
2
#
3
groupadd kvm -f -g 78
4
echo ">>> PLEASE READ FOR KVM USAGE!"
5
echo ">>> Load the correct KVM module, you will need a KVM capable CPU!"
6
echo ">>> Add yourself to the group 'kvm'."
7
}
8
9
post_upgrade() {
10
post_install $1
11
}
12
13
post_remove() {
14
#
15
groupdel kvm
16
}
17
18
op=$1
19
shift
20
$op $*
21