#!/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 $?
}
