mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
351 B
Plaintext
14 lines
351 B
Plaintext
9 years ago
|
# fake some events needed for correct startup other services
|
||
|
|
||
|
description "In-Container Upstart Fake Events"
|
||
|
|
||
|
start on startup
|
||
|
|
||
|
script
|
||
|
rm -rf /var/run/*.pid
|
||
|
rm -rf /var/run/network/*
|
||
|
/sbin/initctl emit stopped JOB=udevtrigger --no-wait
|
||
|
/sbin/initctl emit started JOB=udev --no-wait
|
||
|
/sbin/initctl emit runlevel RUNLEVEL=3 --no-wait
|
||
|
end script
|