Files
deb-python-senlinclient/debian/python3-senlinclient.postrm
2015-12-09 08:45:53 +00:00

12 lines
160 B
Bash

#!/bin/sh
set -e
if [ "$1" = "remove" ] || [ "$1" = "disappear" ] ; then
update-alternatives --remove senlin /usr/bin/python3-senlin
fi
#DEBHELPER#
exit 0