diff options
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 |
commit | 976e74860f813170a6159176c17afe2730438bbc (patch) | |
tree | a7a54cb438529331f85e00fe37985a05f67b5004 /games/vbam/doinst.sh | |
parent | b9e67ddcfedcc974eb0f2392018373f345f6f321 (diff) |
games/vbam: Added to 12.2 repository
Diffstat (limited to 'games/vbam/doinst.sh')
-rw-r--r-- | games/vbam/doinst.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/games/vbam/doinst.sh b/games/vbam/doinst.sh new file mode 100644 index 000000000000..dd52706baaf8 --- /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 + |