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-net
2023-05-19 04:13:16 +00:00

16 lines
213 B
Bash
Executable File

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