summaryrefslogtreecommitdiff
path: root/upstart/cloud-run-user-script.conf
blob: e4a60bcb40f46f5db39369fff5f284a362733cdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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

script
sdir=/var/lib/cloud/data/scripts
[ -d "$sdir" ] || exit 0
exec cloud-init-run-module once-per-instance user-scripts execute \
   --regex '.*' run-parts "$sdir"
end script