diff options
author | Miguel De Anda <miguel@thedeanda.com> | 2011-03-06 00:22:57 -0300 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2011-03-06 00:22:57 -0300 |
commit | 67d04ea4e22e66df0dfd36a0ecf6ad2c2a929e0c (patch) | |
tree | 420413ef0eb41ea8daea848ebead83347d9cc4ed /system/mongodb/doinst.sh | |
parent | 4a6ea94efa3c7a7231dacfb62b29e8de1cfc64a1 (diff) | |
download | slackbuilds-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.sh | 26 |
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 + |