aboutsummaryrefslogtreecommitdiff
path: root/deskutils/horde4-kronolith/files/pkg-deinstall.in
blob: 97d0a7cca145baf7f87d5f3b4e122ad7053d4c94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh
#
# $FreeBSD$
#
# Backup Kronolith config files, if needed.

if [ x$2 != xDEINSTALL ]; then
    exit
fi

if [ -z "${PACKAGE_BUILDING}" ]; then
  for cf in `ls %%KRONOLITHDIR%%/config/*php`; do
    diff -bBqw $cf $cf.dist >/dev/null 2>&1
    case $? in
      0)  # original config file, delete it
          rm -f $cf
          ;;
      1)  # config file has been updated, leave it alone
          ;;
      *)  # not found?
          ;;
    esac
  done
fi