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