summaryrefslogtreecommitdiffabout
path: root/debian/dudki.postinst
blob: 49dc83cd757a1984f8422abd96d601cdefa6c7bb (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
    
    if which ucf >/dev/null; then
        ucf /usr/share/doc/dudki/dudki.conf /etc/dudki.conf
    fi

    if which ucfr >/dev/null; then
        ucfr dudki /etc/dudki.conf
    fi
fi

#DEBHELPER#

exit 0