From 2f10c858ea8bc579414b3a8d8b6eced4a94a5114 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 12 Sep 2021 11:30:45 +0200 Subject: Adding debian packaging. Signed-off-by: Daniel Baumann --- debian/open-infrastructure-ddns-client.postrm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 debian/open-infrastructure-ddns-client.postrm (limited to 'debian/open-infrastructure-ddns-client.postrm') diff --git a/debian/open-infrastructure-ddns-client.postrm b/debian/open-infrastructure-ddns-client.postrm new file mode 100755 index 0000000..309a3c8 --- /dev/null +++ b/debian/open-infrastructure-ddns-client.postrm @@ -0,0 +1,23 @@ +#!/bin/sh + +set -e + +case "${1}" in + purge) + rm -rf /etc/network-tools + rm -rf /var/log/network-tools + ;; + + remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + + ;; + + *) + echo "postrm called with unknown argument \`${1}'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 -- cgit v1.2.3