summaryrefslogtreecommitdiff
path: root/borg-family-0.1/debian/borg-family.postinst
blob: 5bf8c69cc7f3fac117495c94251a1bad84cb1530 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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#