blob: fc002aa3c208a6e0ff17ffd2cf0a10842a77cd5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
pre_remove() {
/bin/true
}
post_remove() {
echo ">>> To complete the uninstallation remove the RtCW data directory:"
echo ">>> rm -r /opt/bzzwolfsp/"
echo ">>>"
}
op=$1
shift
$op $*
|