1
0
mirror of https://gitlab.alpinelinux.org/alpine/cloud/tiny-cloud.git synced 2025-12-15 11:22:43 +03:00
tiny-cloud/dist/openrc/tiny-cloud-net
Jake Buchholz Göktürk fa3125f0a5 Fix OpenRC Dependencies
2023-05-10 18:16:14 +00:00

15 lines
201 B
Bash
Executable File

#!/sbin/openrc-run
# vim:set ts=8 noet ft=sh:
description="Tiny Cloud Bootstrap - net phase"
depend() {
need net
before tiny-cloud
}
start() {
ebegin "Tiny Cloud - net"
tiny-cloud net
eend $?
}