diff options
author | JK Wood <joshuakwood@gmail.com> | 2014-07-22 16:18:08 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-07-22 16:18:08 +0700 |
commit | 8466b870811a0d5daa7f1cf3cca2b3406533b386 (patch) | |
tree | ea486c3f3daf952b2ca4d39ca65d860b14926ae8 /ham/qradiopredict/doinst.sh | |
parent | d8bc81a867c9c3ac4fbe5c969b6a3ac27f15e666 (diff) |
ham/qradiopredict: Added (VHF-UHF Propagation calculator).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'ham/qradiopredict/doinst.sh')
-rw-r--r-- | ham/qradiopredict/doinst.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ham/qradiopredict/doinst.sh b/ham/qradiopredict/doinst.sh new file mode 100644 index 0000000000000..de61f92da5586 --- /dev/null +++ b/ham/qradiopredict/doinst.sh @@ -0,0 +1,14 @@ +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 usr/share/qradiopredict/propagation.sqlite.new |