summaryrefslogtreecommitdiff
path: root/debian/tmp/live-build-cron-manual.postrm
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2012-07-19 04:13:14 +0200
committerDaniel Baumann <daniel@debian.org>2012-07-19 04:13:14 +0200
commitb5dc28d1aa1e1236b7bf148a4526cd8791eb1fd2 (patch)
tree68770b7d58e211835b5238db2cb8ac296f4659f9 /debian/tmp/live-build-cron-manual.postrm
parente8a9743b373006f521c1d04368d7471f3627f6a9 (diff)
downloadvyos-live-build-b5dc28d1aa1e1236b7bf148a4526cd8791eb1fd2.tar.gz
vyos-live-build-b5dc28d1aa1e1236b7bf148a4526cd8791eb1fd2.zip
Removing leftover maintainer scripts from cron removals.
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