From 3af2618393ffa6720113623abc16f8a88496243b Mon Sep 17 00:00:00 2001 From: Erik Wilson Date: Fri, 26 Apr 2019 22:13:38 -0700 Subject: [PATCH] Fix systemd install not starting --- install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install.sh b/install.sh index cc4d2b9e4bf..4c93fcebf2b 100755 --- a/install.sh +++ b/install.sh @@ -485,6 +485,7 @@ EOF create_service_file() { [ "${HAS_SYSTEMD}" = "true" ] && create_systemd_service_file [ "${HAS_OPENRC}" = "true" ] && create_openrc_service_file + return 0 } # --- get hashes of the current k3s bin and service files @@ -530,6 +531,7 @@ service_enable_and_start() { [ "${HAS_SYSTEMD}" = "true" ] && systemd_start [ "${HAS_OPENRC}" = "true" ] && openrc_start + return 0 } # --- run the install process --