diff options
author | David Somero <dsomero@hotmail.com> | 2010-05-11 22:54:29 +0200 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-05-11 22:54:29 +0200 |
commit | cf3f72ac05bf8525e1fc80e2828af775698fba1a (patch) | |
tree | 1991794b2e8fd34d65d7b49ab460c82df51c356d /misc/qstat/doinst.sh | |
parent | a1b3f8c001f48f03181d382188644f9fc0a9067a (diff) |
misc/qstat: Added to 12.1 repository
Diffstat (limited to 'misc/qstat/doinst.sh')
-rw-r--r-- | misc/qstat/doinst.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/misc/qstat/doinst.sh b/misc/qstat/doinst.sh new file mode 100644 index 0000000000..df4e1c9549 --- /dev/null +++ b/misc/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 |