blob: d4a67b3049934e5f960bbd263a13981d53dce74b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
if [ x"$2" != x"POST-DEINSTALL" ]; then
exit 0
fi
cat <<EOF
If you wish to delete ejabberd data and log files, remove
"/var/spool/ejabberd" and "/var/log/ejabberd" directories.
EOF
exit 0
|