summaryrefslogtreecommitdiffstats
path: root/games/vbam/doinst.sh
diff options
context:
space:
mode:
author JK Wood <joshuakwood@gmail.com>2010-05-12 23:29:37 +0200
committer David Somero <xgizzmo@slackbuilds.org>2010-05-12 23:29:37 +0200
commit976e74860f813170a6159176c17afe2730438bbc (patch)
treea7a54cb438529331f85e00fe37985a05f67b5004 /games/vbam/doinst.sh
parentb9e67ddcfedcc974eb0f2392018373f345f6f321 (diff)
downloadslackbuilds-976e74860f813170a6159176c17afe2730438bbc.tar.gz
slackbuilds-976e74860f813170a6159176c17afe2730438bbc.tar.xz
games/vbam: Added to 12.2 repository
Diffstat (limited to 'games/vbam/doinst.sh')
-rw-r--r--games/vbam/doinst.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/games/vbam/doinst.sh b/games/vbam/doinst.sh
new file mode 100644
index 0000000000..dd52706baa
--- /dev/null
+++ b/games/vbam/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/vbam.cfg.new
+