yunohost/debian/postrm

13 lines
155 B
Bash

#!/bin/bash
set -e
if [ "$1" = "purge" ]; then
update-rc.d yunohost-firewall remove >/dev/null
fi
rm -f /etc/yunohost/installed
#DEBHELPER#
exit 0