/etc/init/upstart-local-bridge.conf is in lxc-android-config 0.230+16.04.20160328-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # upstart-local-bridge - Bridge client socket events into Upstart
#
# This helper daemon receives name=value pairs from a socket
# and emits an upstart event containing these values.
description "Bridge client socket name=value pairs into Upstart"
start on starting lxc-android-config
stop on runlevel [!2345]
expect daemon
respawn
emits android-container
pre-start script
mkdir -p /dev/socket
end script
exec upstart-local-bridge --daemon --event=android-container --path=/dev/socket/upstart-text-bridge
|