summaryrefslogtreecommitdiffstats
path: root/games/qstat/doinst.sh
diff options
context:
space:
mode:
author Gethyn ThomasQuail2015-06-28 03:20:04 +0200
committer Willy Sudiarto Raharjo2015-06-28 06:34:51 +0200
commitae036218eb5b40efaf727e466ed931011b3ff3c8 (patch)
tree4539e0dd883b1a91202f2a391b3b0b1caa0c0770 /games/qstat/doinst.sh
parentffa2c9197673177b7391980ea308746d33b3c0ce (diff)
downloadslackbuilds-ae036218eb5b40efaf727e466ed931011b3ff3c8.tar.gz
games/qstat: Added (Command-line Game Server Query Tool).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/qstat/doinst.sh')
-rw-r--r--games/qstat/doinst.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/games/qstat/doinst.sh b/games/qstat/doinst.sh
new file mode 100644
index 0000000000..df4e1c9549
--- /dev/null
+++ b/games/qstat/doinst.sh
@@ -0,0 +1,15 @@
+# Handle configuration files
+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...
+}
+# List of configuration files (they should end in .new)
+
+config etc/qstat.cfg.new