summaryrefslogtreecommitdiffstats
path: root/network/sqlrelay/doinst.sh
blob: c0c14cd6a10f00d741160059507ac0b812985781 (plain)
config() {
  NEW="$1"
  OLD="$(dirname $NEW)/$(basename $NEW .new)"
  # If there's no config file by that name, mv it over:
  if [ ! -r $OLD ]; then
    mv $NEW $OLD
  elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
    # toss the redundant copy
    rm $NEW
  fi
  # Otherwise, we leave the .new copy for the admin to consider...
}

preserve_perms() {
  NEW="$1"
  OLD="$(dirname $NEW)/$(basename $NEW .new)"
  if [ -e $OLD ]; then
    cp -a $OLD ${NEW}.incoming
    cat $NEW > ${NEW}.incoming
    mv ${NEW}.incoming $NEW
  fi
  config $NEW
}

preserve_perms etc/rc.d/rc.sqlrelay.new
preserve_perms etc/rc.d/rc.sqlrcachemanager.new
config etc/sqlrelay/sqlrelay.xsd.new
config etc/php.d/pdo_sqlrelay.ini.new
config etc/php.d/sql_relay.ini.new