- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
28 lines
873 B
Diff
28 lines
873 B
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: Pending
|
|
|
|
service/systemd/mosquitto.service.simple | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/service/systemd/mosquitto.service.simple b/service/systemd/mosquitto.service.simple
|
|
index 15ee0d6..c2a330b 100644
|
|
--- 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
|