mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 16:27:27 +00:00
4084b10111
Refresh patches, drop patch 3238, now part of upstream codebase Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org> Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Anuj Mittal <anuj.mittal@oss.qualcomm.com>
39 lines
1.1 KiB
Diff
39 lines
1.1 KiB
Diff
From: Joachim Zobel <jz-2017@heute-morgen.de>
|
|
Date: Wed, 13 Sep 2023 10:05:43 +0200
|
|
Subject: [PATCH] Mosquitto now waits for network-online when starting
|
|
(Closes: #1036450)
|
|
|
|
See: https://github.com/eclipse/mosquitto/issues/2878
|
|
---
|
|
Upstream-Status: Submitted [https://github.com/eclipse-mosquitto/mosquitto/pull/2895]
|
|
|
|
service/systemd/mosquitto.service.simple | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- a/service/systemd/mosquitto.service.simple
|
|
+++ b/service/systemd/mosquitto.service.simple
|
|
@@ -1,8 +1,8 @@
|
|
[Unit]
|
|
Description=Mosquitto MQTT Broker
|
|
Documentation=man:mosquitto.conf(5) man:mosquitto(8)
|
|
-After=network.target
|
|
-Wants=network.target
|
|
+After=network-online.target
|
|
+Wants=network-online.target
|
|
|
|
[Service]
|
|
ExecStart=/usr/sbin/mosquitto -c /etc/mosquitto/mosquitto.conf
|
|
--- a/service/systemd/mosquitto.service.notify
|
|
+++ b/service/systemd/mosquitto.service.notify
|
|
@@ -1,8 +1,8 @@
|
|
[Unit]
|
|
Description=Mosquitto MQTT Broker
|
|
Documentation=man:mosquitto.conf(5) man:mosquitto(8)
|
|
-After=network.target
|
|
-Wants=network.target
|
|
+After=network-online.target
|
|
+Wants=network-online.target
|
|
|
|
[Service]
|
|
Type=notify
|