summaryrefslogtreecommitdiffstats
path: root/system/redis/doinst.sh
diff options
context:
space:
mode:
author Kuroi Kenshi2010-05-13 01:01:06 +0200
committer Robby Workman2010-05-13 01:01:06 +0200
commitbe69bc9ce7b3e45414f86bfcc3ed1c30447e908d (patch)
treea4a19f422277bf14c958b30e2272f4f281b7f532 /system/redis/doinst.sh
parentc2654d092673d44b326abd9e2325bcc57bdab719 (diff)
downloadslackbuilds-be69bc9ce7b3e45414f86bfcc3ed1c30447e908d.tar.gz
system/redis: Added to 13.0 repository
Diffstat (limited to 'system/redis/doinst.sh')
-rw-r--r--system/redis/doinst.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/system/redis/doinst.sh b/system/redis/doinst.sh
new file mode 100644
index 0000000000..581ef15d40
--- /dev/null
+++ b/system/redis/doinst.sh
@@ -0,0 +1,13 @@
+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/redis.conf.new
+