summaryrefslogtreecommitdiffstats
path: root/network/etherpad-lite/doinst.sh
diff options
context:
space:
mode:
author Robby Workman2013-02-24 06:22:36 +0100
committer Robby Workman2013-02-24 20:25:01 +0100
commitb2b78b8bc2b60d1db146e5a814317079ea7a1ef6 (patch)
tree49c41e8df69117c0835210cbae0947b99ce1d16a /network/etherpad-lite/doinst.sh
parent196f57a4114b8966d69c22d25914af25146f1a5d (diff)
downloadslackbuilds-b2b78b8bc2b60d1db146e5a814317079ea7a1ef6.tar.gz
network/etherpad-lite: Don't clobber system configs/logs on upgrade
This commit creates if needed (otherwise, updates timestamps on) the log files during package install as opposed to creating them inside the package itself - if they're present inside the package, then a package upgrade clobbers the files on the installed system if they happen to already exist. This commit also installs the init script and a couple of config files with .new extensions and then does the config() routine on them (or preserve_perms() in the case of the init script). The downside is that this will cause any .new'd files *and* the logs to be removed on this upgrade; I hope this doesn't cause much pain for users, but it's got to happen sooner or later, so let's get it over with... Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/etherpad-lite/doinst.sh')
-rw-r--r--network/etherpad-lite/doinst.sh30
1 files changed, 30 insertions, 0 deletions
diff --git a/network/etherpad-lite/doinst.sh b/network/etherpad-lite/doinst.sh
new file mode 100644
index 0000000000..544d5c4eec
--- /dev/null
+++ b/network/etherpad-lite/doinst.sh
@@ -0,0 +1,30 @@
+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.etherpad-lite.new
+config etc/etherpad-lite/settings.json.new
+
+touch var/log/$PRGNAM/etherpad.log
+touch var/log/$PRGNAM/error.log
+