diff options
author | Christoph Willing <c.willing@uq.edu.au> | 2011-03-05 13:43:41 -0300 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2011-03-05 13:43:41 -0300 |
commit | f95563184b7aba07ef0ec3f5a4ad0d79c41e005b (patch) | |
tree | d331c30f6919399d14222a4e9ed8d5ad80e16162 /misc/mosquitto/doinst.sh | |
parent | f984981018734ae27ddad8f5aff311477194ee82 (diff) | |
download | slackbuilds-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.sh | 15 |
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 + |