From 65578227421d1624227afb1065d47bb1602b4f40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jake=20Buchholz=20G=C3=B6kt=C3=BCrk?= Date: Tue, 2 May 2023 19:06:59 -0700 Subject: [PATCH] * warn when bootstrap is manually marked complete --- sbin/tiny-cloud | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sbin/tiny-cloud b/sbin/tiny-cloud index 31cf2bc..c9f89a0 100755 --- a/sbin/tiny-cloud +++ b/sbin/tiny-cloud @@ -33,7 +33,8 @@ while true; do -b|--bootstrap) shift case "$1" in complete) # indicate bootstrap is done - init__bootstrap_complete;; + init__bootstrap_complete + log warn 'bootstrap marked complete';; incomplete) # indicate bootstrap isn't done bootstrap_incomplete log warn 'bootstrap marked incomplete';;