summaryrefslogtreecommitdiff
path: root/misc/mosquitto/doinst.sh
diff options
context:
space:
mode:
authorChristoph Willing <c.willing@uq.edu.au>2011-03-05 13:43:41 -0300
committerNiels Horn <niels.horn@slackbuilds.org>2011-03-05 13:43:41 -0300
commitf95563184b7aba07ef0ec3f5a4ad0d79c41e005b (patch)
treed331c30f6919399d14222a4e9ed8d5ad80e16162 /misc/mosquitto/doinst.sh
parentf984981018734ae27ddad8f5aff311477194ee82 (diff)
downloadslackbuilds-f95563184b7aba07ef0ec3f5a4ad0d79c41e005b.tar.gz
misc/mosquitto: Added (MQTT server)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'misc/mosquitto/doinst.sh')
-rw-r--r--misc/mosquitto/doinst.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/misc/mosquitto/doinst.sh b/misc/mosquitto/doinst.sh
new file mode 100644
index 0000000000..3ec38f52fa
--- /dev/null
+++ b/misc/mosquitto/doinst.sh
@@ -0,0 +1,15 @@
+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/mosquitto/mosquitto.conf.new
+