summaryrefslogtreecommitdiff
path: root/borg-family-0.1/debian/borg-family.postinst
diff options
context:
space:
mode:
Diffstat (limited to 'borg-family-0.1/debian/borg-family.postinst')
-rw-r--r--borg-family-0.1/debian/borg-family.postinst15
1 files changed, 0 insertions, 15 deletions
diff --git a/borg-family-0.1/debian/borg-family.postinst b/borg-family-0.1/debian/borg-family.postinst
deleted file mode 100644
index 5bf8c69..0000000
--- a/borg-family-0.1/debian/borg-family.postinst
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-set -e
-
-EVFILE=/etc/borg-family/envvars
-
-if [ "$1" = configure ]; then
- . /usr/share/debconf/confmodule
- unset BORG_REPO
- db_get borg-family/borg-repo && BORG_REPO="$RET"
- db_stop
- [ -f "$EVFILE" ] || install -m 644 /usr/share/doc/borg-family/examples/envvars "$EVFILE"
- [ -n "$BORG_REPO" ] && sed --in-place -e 's#^export BORG_REPO=.*$#export BORG_REPO="'$BORG_REPO'"#' -- "$EVFILE"
-fi
-
-#DEBHELPER#