diff options
author | Yalla-One <yallaone@gmail.com> | 2010-05-11 20:01:28 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 20:01:28 +0200 |
commit | b5b96ee9026e8b7efa04363dde5d63decfce707c (patch) | |
tree | ab8b93434418a8ed16691e6450891e866bf83a77 /network/GeoIP/doinst.sh | |
parent | 4c8f9c4f3f017028ddb24620d24adacefa901649 (diff) | |
download | slackbuilds-b5b96ee9026e8b7efa04363dde5d63decfce707c.tar.gz |
network/GeoIP: Added to 12.0 repository
Diffstat (limited to 'network/GeoIP/doinst.sh')
-rw-r--r-- | network/GeoIP/doinst.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/network/GeoIP/doinst.sh b/network/GeoIP/doinst.sh new file mode 100644 index 0000000000..abb22def77 --- /dev/null +++ b/network/GeoIP/doinst.sh @@ -0,0 +1,16 @@ +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/GeoIP.conf.default.new +config etc/GeoIP.conf.new + |