From a30c94bcb474421017619e737c37dec9357c7ac6 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Thu, 7 Jul 2022 17:45:27 +0000 Subject: [PATCH] Correct messages for install start/finish --- bootstrap-daemon/pvcbootstrapd/lib/lib.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap-daemon/pvcbootstrapd/lib/lib.py b/bootstrap-daemon/pvcbootstrapd/lib/lib.py index a6f30e3..346e2b0 100755 --- a/bootstrap-daemon/pvcbootstrapd/lib/lib.py +++ b/bootstrap-daemon/pvcbootstrapd/lib/lib.py @@ -93,13 +93,13 @@ def host_checkin(config, data): if data["action"] in ["install-start"]: # Node install has started logger.info(f"Registering install start for host {cspec_fqdn}") - notifications.send_webhook(config, "begin", f"Cluster {cspec_cluster}: starting starting for host {cspec_fqdn}") + notifications.send_webhook(config, "begin", f"Cluster {cspec_cluster}: Base install starting for host {cspec_fqdn}") host.installer_init(config, cspec, data) elif data["action"] in ["install-complete"]: # Node install has finished logger.info(f"Registering install complete for host {cspec_fqdn}") - notifications.send_webhook(config, "success", f"Cluster {cspec_cluster}: install completed for host {cspec_fqdn}") + notifications.send_webhook(config, "success", f"Cluster {cspec_cluster}: Base install completed for host {cspec_fqdn}") host.installer_complete(config, cspec, data) elif data["action"] in ["system-boot_initial"]: