summaryrefslogtreecommitdiffstats
path: root/network/webhook/doinst.sh
blob: e950dd159455da20a5f5c34c9ae6400827e3cc5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
config() {
	NEW="$1"
	OLD="$(dirname $NEW)/$(basename $NEW .new)"
	if [ ! -r $OLD ]; then
		mv $NEW $OLD
	elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
		rm $NEW
	fi
}

preserve_perms() {
	NEW="$1"
	OLD="$(dirname $NEW)/$(basename $NEW .new)"
	if [ -e $OLD ]; then
		cp -a $OLD ${NEW}.incoming
		cat $NEW > ${NEW}.incoming
		mv ${NEW}.incoming $NEW
	fi
	config $NEW
}

preserve_perms etc/rc.d/rc.webhook.new
config etc/webhook/hooks.json.new
config etc/default/webhook.new
config etc/logrotate.d/webhook.new