mirror of
https://gitlab.alpinelinux.org/alpine/cloud/tiny-cloud.git
synced 2025-12-14 19:02:45 +03:00
17 lines
231 B
Bash
Executable File
17 lines
231 B
Bash
Executable File
#!/sbin/openrc-run
|
|
# vim:set filetype=sh:
|
|
# shellcheck shell=sh
|
|
|
|
description="Tiny Cloud Bootstrap - boot phase"
|
|
|
|
depend() {
|
|
after root logger
|
|
before net
|
|
}
|
|
|
|
start() {
|
|
ebegin "Tiny Cloud - boot phase"
|
|
tiny-cloud boot
|
|
eend $?
|
|
}
|