From f95563184b7aba07ef0ec3f5a4ad0d79c41e005b Mon Sep 17 00:00:00 2001 From: Christoph Willing Date: Sat, 5 Mar 2011 13:43:41 -0300 Subject: misc/mosquitto: Added (MQTT server) Signed-off-by: Niels Horn --- misc/mosquitto/doinst.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 misc/mosquitto/doinst.sh (limited to 'misc/mosquitto/doinst.sh') 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 + -- cgit v1.2.3