blob: 0edbaa4258362451a248bb91202de233f16a1f2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
post_install() {
echo ">> Documentation: http://wiki.archlinux.org/index.php/Prosody"
echo ">> Probably you need to do 'chown prosody:jabber /var/lib/prosody'"
}
post_upgrade() {
post_install $1
}
post_remove() {
paths=(/etc/prosody /var/lib/prosody /var/log/prosody
/var/log/old/prosody)
first=true
for path in ${paths[@]}; do
if [ -d $path ]; then
if $first; then
first=false
echo "==> Leftover Paths:"
fi
echo "==> $path"
fi
done
}
|