summaryrefslogtreecommitdiffstats
path: root/network/gophernicus/doinst.sh
blob: 5d651876839881a98857ab02b8dd7014c8592224 (plain)
config() {
  NEW="$1"
  OLD="$(dirname $NEW)/$(basename $NEW .new)"
  if [ ! -r $OLD ]; then
    mv $NEW $OLD
  elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
    rm $NEW
  fi
}

if [ -f etc/xinetd.d/gophernicus.new ]; then
  config etc/xinetd.d/gophernicus.new
fi