blob: a30fc11073ab2783c0627b7590e8fb9b38e2d0f9 (
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/rtcwcoop/"
echo ">>>"
}
op=$1
shift
$op $*
|