summaryrefslogtreecommitdiffstats
path: root/debian/postinst
blob: dadfd422d48e4dca10266d420801816f38923e2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /bin/sh

set -e

CONFSRC="/usr/share/debtree"
CONFDEST="/etc/debtree"

case $1 in
    configure)
	for file in skiplist endlist; do
		ucf --three-way --debconf-ok $CONFSRC/$file $CONFDEST/$file
	done
	;;
esac

#DEBHELPER#