summaryrefslogblamecommitdiff
path: root/net-mgmt/horde-nic/files/pkg-deinstall.in
blob: 1ec68c56a52fdc3f590e09774f90885ab094a5a2 (plain) (tree)























                                                        
#!/bin/sh
#
# $FreeBSD$
#
# Backup trean config files, if needed.

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

if [ -z "${PACKAGE_BUILDING}" ]; then
  for cf in `ls %%NICDIR%%/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