1
0
mirror of https://gitlab.alpinelinux.org/alpine/cloud/tiny-cloud.git synced 2025-12-15 11:22:43 +03:00

Tiny Cloud 3.0.0 (final!)

This commit is contained in:
Jake Buchholz Göktürk 2023-05-30 16:59:06 -07:00
parent 475c3d4642
commit d5a5e88b6a
3 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
# CHANGELOG
## 2023-05-XX - Tiny Cloud v3.0.0
## 2023-05-31 - Tiny Cloud v3.0.0
### INIT SCRIPTS / PHASES

View File

@ -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

View File

@ -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;;