1
0
mirror of https://gitlab.alpinelinux.org/alpine/cloud/tiny-cloud.git synced 2025-12-15 11:22:43 +03:00

openrc-run auto-loads /etc/conf.d/tiny-ec2-bootstrap

This commit is contained in:
Jake Buchholz 2019-06-03 22:13:27 -07:00 committed by Mike Crute
parent ba46c43caa
commit 8b933685a4

View File

@ -3,6 +3,9 @@
description="Provides EC2 cloud bootstrap"
# override in /etc/conf.d/tiny-ec2-bootstrap
EC2_USER=${EC2_USER:-alpine}
depend() {
need net
provide cloud-final
@ -64,10 +67,6 @@ start() {
# Don't bootstrap if the host has already been bootstrapped
[ -f "/var/lib/cloud/.bootstrap-complete" ] && return 0
# load configuration, set defaults
[ -f "/etc/conf.d/tiny-ec2-bootstrap" ] && . /etc/conf.d/tiny-ec2-bootstrap
EC2_USER=${EC2_USER:-alpine}
[ -d "/var/lib/cloud" ] || mkdir -p /var/lib/cloud
ebegin "Disabling root password"; _disable_password root; eend $?