blob: 5e0e3c25dcc2e2d266fa782efa941248d043510f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# this runs user scripts found in user-data, that are
# stored in /var/lib/cloud/scripts by the initial ec2init upstart job
description "execute cloud user scripts"
start on stopped rc RUNLEVEL=[2345]
console output
task
exec cloud-init-run-module once_per_ami execute \
run-parts "/var/lib/cloud/scripts"
|