1
0
mirror of https://gitlab.alpinelinux.org/alpine/cloud/tiny-cloud.git synced 2025-12-14 19:02:45 +03:00
tiny-cloud/dist/openrc/tiny-cloud-boot
Natanael Copa 85108e958b Fix vim modelines and make more readable
Add missing trailing :

Use filetype=sh instead of ft=sh to make it more readable.
2023-05-24 14:50:02 +00:00

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 $?
}