aboutsummaryrefslogtreecommitdiffstats
path: root/www/rt40/files/pkg-install.in
blob: 531b2d2ad1925c1fce103c7dece714f9443f16b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
#
# $FreeBSD$

PATH=/usr/sbin:/usr/bin:/bin ; export PATH

case $2 in

    POST-INSTALL)

    # Install a default config file if none exists
    if [ ! -f ${CFG_FILE} ] ; then
        cp -p ${CFG_FILE}-dist ${CFG_FILE}
    fi
    ;;
esac

#
# That's All Folks!
#