openuds/actors/linux/debian/udsactor.postrm
Adolfo Gómez García 8a138f9cd8 * Bug fix on debian based removal script
* Removed IPC backend task start to notify login/logout
2014-11-24 12:12:46 +01:00

15 lines
303 B
Bash
Executable File

#!/bin/sh -e
. /usr/share/debconf/confmodule
set -e
if [ "$1" = "purge" ] ; then
if [ -f /etc/udsactor/udsactor.cfg ]; then
mv /etc/udsactor/udsactor.cfg /etc/udsactor/udsactor.cfg.dpkg-backup
# Remove .pyc leaved behind
rm -rf /usr/share/UDSActor || true > /dev/null 2>&1
fi
fi