summaryrefslogtreecommitdiffstats
path: root/ham/svxlink/doinst.sh
blob: 7e5752f26e3c2eff36d3e50bd8222096343fa870 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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...
}

config etc/svxlink/svxlink.conf.new
config etc/svxlink/remotetrx.conf.new
config etc/svxlink/TclVoiceMail.conf.new
config etc/svxlink/svxlink.d/ModuleDtmfRepeater.conf.new
config etc/svxlink/svxlink.d/ModuleEchoLink.conf.new
config etc/svxlink/svxlink.d/ModuleHelp.conf.new
config etc/svxlink/svxlink.d/ModuleMetarInfo.conf.new
config etc/svxlink/svxlink.d/ModuleParrot.conf.new
config etc/svxlink/svxlink.d/ModulePropagationMonitor.conf.new
config etc/svxlink/svxlink.d/ModuleSelCallEnc.conf.new
config etc/svxlink/svxlink.d/ModuleTclVoiceMail.conf.new