#!/sbin/openrc-run
# vim:set filetype=sh:
# shellcheck shell=sh

description="Tiny Cloud Bootstrap - main phase"

depend() {
	need net
	before sshd
}

start() {
	ebegin "Tiny Cloud - main phase"
	tiny-cloud main
	eend $?
}
