diff options
author | Heinz Wiesinger <pprkut@liwjatan.at> | 2010-05-11 22:53:06 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-11 22:53:06 +0200 |
commit | 5bbe346efb38a7fc36deda7b06767370b1638740 (patch) | |
tree | 9f05faea2e9116b5ec9df9f3e62ba0a2495cce1b /academic/sword/doinst.sh | |
parent | 90359937f0bcf8459182c81f7d90a5bc992c5482 (diff) |
academic/sword: Added to 12.1 repository
Diffstat (limited to 'academic/sword/doinst.sh')
-rw-r--r-- | academic/sword/doinst.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/academic/sword/doinst.sh b/academic/sword/doinst.sh new file mode 100644 index 000000000000..4b522675cc19 --- /dev/null +++ b/academic/sword/doinst.sh @@ -0,0 +1,15 @@ +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/sword.conf.new + |