From 84f2faff385f4107fdde8a091d1964fbc2d1f813 Mon Sep 17 00:00:00 2001 From: Jakob Olsson Date: Thu, 7 Sep 2023 15:56:06 +0200 Subject: [PATCH] hostmngr: uci-defaults: exit with rc 0 after config convertation --- .../uci-defaults/993-topology-hosts-to-hostmngr-hosts-config | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hostmngr/files/etc/uci-defaults/993-topology-hosts-to-hostmngr-hosts-config b/hostmngr/files/etc/uci-defaults/993-topology-hosts-to-hostmngr-hosts-config index 1cd38cb94..f86f3bda7 100644 --- a/hostmngr/files/etc/uci-defaults/993-topology-hosts-to-hostmngr-hosts-config +++ b/hostmngr/files/etc/uci-defaults/993-topology-hosts-to-hostmngr-hosts-config @@ -1,6 +1,6 @@ #!/bin/sh -uci -q get hosts.global.ageing_timer || exit 1 +uci -q get hosts.global.ageing_timer || exit 0 # Old hosts UCI config is detected; Convert to new format @@ -20,3 +20,4 @@ for ifname in $(uci -q get hosts.global.ifname); do done uci -q delete hosts.global.ifname +exit 0