diff options
author | Gethyn ThomasQuail <gethyn@bloodbathsoftworks.com> | 2015-06-28 08:20:04 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-06-28 11:34:51 +0700 |
commit | ae036218eb5b40efaf727e466ed931011b3ff3c8 (patch) | |
tree | 4539e0dd883b1a91202f2a391b3b0b1caa0c0770 /games/qstat/doinst.sh | |
parent | ffa2c9197673177b7391980ea308746d33b3c0ce (diff) | |
download | slackbuilds-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.sh | 15 |
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 |