From 9ed6be5b84e796d049dd73a31a3e9142203f0539 Mon Sep 17 00:00:00 2001 From: Dimitar Dimitrov Date: Tue, 4 Jun 2024 12:10:17 +0300 Subject: [PATCH] [#335] Fix postinst_rpm (#338) Signed-off-by: Dimitar Dimitrov --- build/postinst_rpm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/postinst_rpm b/build/postinst_rpm index db0edb79..9a64639d 100644 --- a/build/postinst_rpm +++ b/build/postinst_rpm @@ -24,7 +24,7 @@ if [ $1 -eq 1 ] && [ -x "/usr/lib/systemd/systemd-update-helper" ]; then # Start the Kanto services if enabled if [ -d /run/systemd/system ]; then systemctl is-enabled -q suite-connector.service && systemctl start suite-connector.service >/dev/null || : - systemctl is-enabled -q azure-connector.service && systemctl azure suite-connector.service >/dev/null || : + systemctl is-enabled -q azure-connector.service && systemctl start azure-connector.service >/dev/null || : systemctl is-enabled -q aws-connector.service && systemctl start aws-connector.service >/dev/null || : systemctl is-enabled -q local-digital-twins.service && systemctl start local-digital-twins.service >/dev/null || : systemctl is-enabled -q container-management.service && systemctl start container-management.service >/dev/null || :