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-final
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
233 B
Bash
Executable File

#!/sbin/openrc-run
# vim:set filetype=sh:
# shellcheck shell=sh
description="Tiny Cloud Bootstrap - final phase"
depend() {
after *
provide cloud-final
}
start() {
ebegin "Tiny Cloud - final phase"
tiny-cloud final
eend $?
}