From 1f05dba5702e3a9b13e9795310200821dd1e520c Mon Sep 17 00:00:00 2001 From: B Stack Date: Thu, 10 Dec 2020 13:25:27 -0500 Subject: add debian/ and improve installation --- debian/postrm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 debian/postrm (limited to 'debian/postrm') diff --git a/debian/postrm b/debian/postrm new file mode 100644 index 0000000..1d20f2a --- /dev/null +++ b/debian/postrm @@ -0,0 +1,26 @@ +#!/bin/sh +set -e + +#DEBHELPER# +D=/var/www/hex-zero + +case "$1" in + purge) + update-rc.d -f hex-zero remove + rm -f ${D}/db.sqlite \ + ${D}/migrations/__pycache__/* \ + ${D}/migrations/* \ + ${D}/migrations/versions/* 1>/dev/null 2>&1 || : + rmdir ${D}/migrations/__pycache__ ${D}/migrations/versions 1>/dev/null 2>&1 || : + rmdir ${D}/migrations 1>/dev/null 2>&1 || : + ;; + remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +exit 0 -- cgit