summaryrefslogtreecommitdiffstats
path: root/system/mongodb/doinst.sh
diff options
context:
space:
mode:
author Miguel De Anda2011-03-06 04:22:57 +0100
committer Niels Horn2011-03-06 04:22:57 +0100
commit67d04ea4e22e66df0dfd36a0ecf6ad2c2a929e0c (patch)
tree420413ef0eb41ea8daea848ebead83347d9cc4ed /system/mongodb/doinst.sh
parent4a6ea94efa3c7a7231dacfb62b29e8de1cfc64a1 (diff)
downloadslackbuilds-67d04ea4e22e66df0dfd36a0ecf6ad2c2a929e0c.tar.gz
system/mongodb: Added (Database Software)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'system/mongodb/doinst.sh')
-rw-r--r--system/mongodb/doinst.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/system/mongodb/doinst.sh b/system/mongodb/doinst.sh
new file mode 100644
index 0000000000..5b311f0a98
--- /dev/null
+++ b/system/mongodb/doinst.sh
@@ -0,0 +1,26 @@
+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...
+}
+
+preserve_perms() {
+ NEW="$1"
+ OLD="$(dirname $NEW)/$(basename $NEW .new)"
+ if [ -e $OLD ]; then
+ cp -a $OLD ${NEW}.incoming
+ cat $NEW > ${NEW}.incoming
+ mv ${NEW}.incoming $NEW
+ fi
+ config $NEW
+}
+
+preserve_perms etc/rc.d/rc.mongodb.new
+