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 12 04:00:44 UTC 2012
[aur-mirror.git]
/
rabbitmq-stomp
/
rabbitmq-stomp.install
blob
3e756af61abd62762fa44818a019c7a1a80d832b
1
2
do_activation() {
3
echo " ==> Running rabbitmq-activate-plugins..."
4
/usr/lib/erlang/lib/rabbitmq_server-1.7.2/sbin/rabbitmq-activate-plugins
5
}
6
7
pre_install() {
8
/bin/true
9
}
10
11
post_install() {
12
do_activation
13
}
14
15
pre_upgrade() {
16
/bin/true
17
}
18
19
post_upgrade() {
20
do_activation
21
}
22
23
pre_remove() {
24
/bin/true
25
}
26
27
post_remove() {
28
do_activation
29
}
30
31
op=$1
32
shift
33
$op $*
34