summaryrefslogtreecommitdiff
path: root/debian/tmp/live-build-cron-manual.postrm
diff options
context:
space:
mode:
Diffstat (limited to 'debian/tmp/live-build-cron-manual.postrm')
-rw-r--r--debian/tmp/live-build-cron-manual.postrm37
1 files changed, 0 insertions, 37 deletions
diff --git a/debian/tmp/live-build-cron-manual.postrm b/debian/tmp/live-build-cron-manual.postrm
deleted file mode 100644
index 6e15675b5..000000000
--- a/debian/tmp/live-build-cron-manual.postrm
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/sh
-
-set -e
-
-_USERNAME="live-autobuild-manual"
-_DIRECTORY="/srv/debian.net/live-manual"
-
-case "${1}" in
- remove)
- if [ -x /usr/sbin/deluser ]
- then
- deluser --system ${_USERNAME} || true
- fi
-
- if [ -d "${_DIRECTORY}" ]
- then
- rmdir --ignore-fail-on-non-empty "${_DIRECTORY}" || true
- fi
- ;;
-
- purge)
- rm -rf "${_DIRECTORY}"
- ;;
-
- upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
-
- ;;
-
- *)
- echo "postrm called with unknown argument \`${1}'" >&2
- exit 1
- ;;
-esac
-
-#DEBHELPER#
-
-exit 0