diff options
Diffstat (limited to 'borg-family-0.2/debian/borg-family.postinst')
-rw-r--r-- | borg-family-0.2/debian/borg-family.postinst | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/borg-family-0.2/debian/borg-family.postinst b/borg-family-0.2/debian/borg-family.postinst new file mode 100644 index 0000000..e900217 --- /dev/null +++ b/borg-family-0.2/debian/borg-family.postinst @@ -0,0 +1,17 @@ +#!/bin/sh +set -e + +if [ "$1" = configure ]; then + . /usr/share/debconf/confmodule + unset BORG_REPO + for i in "" 2 + do + db_get borg-family/borg-repo$i && BORG_REPO="$RET" + ENVFILE=/etc/borg-family/envvars$i + [ -f "$ENVFILE" ] || install -m 644 /usr/share/doc/borg-family/examples/envvars "$ENVFILE" + [ -n "$BORG_REPO" ] && sed --in-place -e 's#^export BORG_REPO=.*$#export BORG_REPO="'$BORG_REPO'"#' -- "$ENVFILE" + done + db_stop +fi + +#DEBHELPER# |