/etc/init/startpar-bridge.conf is in startpar 0.59-3.
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 | # startpar-bridge - inject upstart start/stop events into startpar
#
# This job serves as a bridge to make startpar aware when an upstart job has
# started or stopped, in order to make a soft transition between sysvinit
# scripts and upstart jobs possible
description "startpar bridge for notification of upstart job start/stop"
author "Steve Langasek <steve.langasek@ubuntu.com>"
start on started JOB!=startpar-bridge or stopped JOB!=startpar-bridge
instance $JOB-$INSTANCE-$UPSTART_EVENTS
task
exec /lib/startpar/startpar-upstart-inject "$JOB" "$INSTANCE" "$UPSTART_EVENTS"
|