aboutsummaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-connectivity/mosquitto/files/mosquitto.service
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2018-08-29 06:09:08 +0100
committerPaul Eggleton <paul.eggleton@linux.intel.com>2018-09-03 11:30:35 +1200
commit949605627c4ae0720e30b418b6aba508b0daab0e (patch)
treea5fdbe79234a4266b9e3dfb741e76d5a623966c6 /meta-networking/recipes-connectivity/mosquitto/files/mosquitto.service
parent6964fa543c9f4394217128b780caa1a94a1d3d21 (diff)
downloadmeta-openembedded-contrib-949605627c4ae0720e30b418b6aba508b0daab0e.tar.gz
mosquitto: upgrade to 1.5.1paule/mosquitto-1-5-1
This includes one security fix and numerous other bugfixes. MQTT version 3.1.1 is now the default protocol. See the following for details: https://mosquitto.org/blog/2018/08/version-151-released/ https://mosquitto.org/blog/2018/05/version-1-5-released/ Changes to the recipe: * Drop explicit installation of the libmosquitto.a static library because this no longer gets built by default, and the normal "make install" which we are running will install it anyway if it were to be enabled. * Drop our service file since there is one supplied in the source tree * Enable systemd notify support when systemd is being used * Update comments in the init script Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'meta-networking/recipes-connectivity/mosquitto/files/mosquitto.service')
-rw-r--r--meta-networking/recipes-connectivity/mosquitto/files/mosquitto.service15
1 files changed, 0 insertions, 15 deletions
diff --git a/meta-networking/recipes-connectivity/mosquitto/files/mosquitto.service b/meta-networking/recipes-connectivity/mosquitto/files/mosquitto.service
deleted file mode 100644
index 25f68fae05..0000000000
--- a/meta-networking/recipes-connectivity/mosquitto/files/mosquitto.service
+++ /dev/null
@@ -1,15 +0,0 @@
-[Unit]
-Description=Mosquitto - lightweight server implementation of the MQTT and MQTT-SN protocols
-ConditionPathExists=/etc/mosquitto/mosquitto.conf
-After=network.target
-
-[Service]
-Type=simple
-ExecStartPre=/bin/rm -f /var/run/mosquitto.pid
-ExecStart=/usr/sbin/mosquitto -c /etc/mosquitto/mosquitto.conf
-ExecReload=/bin/kill -HUP $MAINPID
-PIDFile=/var/run/mosquitto.pid
-Restart=on-failure
-
-[Install]
-WantedBy=multi-user.target