From d5a5e88b6aafe5d8dad8fdeafb0f688c44057b9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jake=20Buchholz=20G=C3=B6kt=C3=BCrk?= Date: Tue, 30 May 2023 16:59:06 -0700 Subject: [PATCH] Tiny Cloud 3.0.0 (final!) --- CHANGELOG.md | 2 +- README.md | 2 +- sbin/tiny-cloud | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1aca8ff..052e5b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # CHANGELOG -## 2023-05-XX - Tiny Cloud v3.0.0 +## 2023-05-31 - Tiny Cloud v3.0.0 ### INIT SCRIPTS / PHASES diff --git a/README.md b/README.md index 77357a2..b33a245 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ not installed in Alpine by default, and would need to be added to the image.)_ When networking, IMDS, and User-Data are all availabile, this is the phase takes care of the majority of bootstrapping actions that require them -- -setting up the instanxe hostname, creating default cloud user, and installing +setting up the instance hostname, creating default cloud user, and installing SSH keys for it. Additional main phase actions may be taken if there is a User-Data handler diff --git a/sbin/tiny-cloud b/sbin/tiny-cloud index eb39546..0de052b 100755 --- a/sbin/tiny-cloud +++ b/sbin/tiny-cloud @@ -49,12 +49,12 @@ while true; do # for installing in mounted volumes : "${ROOT:=}" # start with a clean slate - log -s info " - tiny-cloud* services removed from all runlevels" + log -i info "- tiny-cloud* services removed from all runlevels" rm -f "$ROOT"/etc/runlevels/*/tiny-cloud* - log -s info " + tiny-cloud-boot service added to boot runlevel" + log -i info "+ tiny-cloud-boot service added to boot runlevel" ln -s /etc/init.d/tiny-cloud-boot "$ROOT"/etc/runlevels/boot for p in early main final; do - log -s info " + tiny-cloud-$p service added to default runlevel" + log -i info "+ tiny-cloud-$p service added to default runlevel" ln -s "/etc/init.d/tiny-cloud-$p" "$ROOT"/etc/runlevels/default done exit 0;;