Skip to content

Instantly share code, notes, and snippets.

@whiteley
Created December 11, 2012 07:04
Show Gist options
  • Star 18 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save whiteley/4256487 to your computer and use it in GitHub Desktop.
Save whiteley/4256487 to your computer and use it in GitHub Desktop.
#!/bin/bash
set -o errexit
set -o nounset
if [[ ${#} -ne 1 ]]
then
echo "Usage: ${0} upstart-conf-file" >&2
exit 1
fi
config=${1} && shift
dbus_pid_file=$(/bin/mktemp)
exec 4<> ${dbus_pid_file}
dbus_add_file=$(/bin/mktemp)
exec 6<> ${dbus_add_file}
/bin/dbus-daemon --fork --print-pid 4 --print-address 6 --session
function clean {
kill $(cat ${dbus_pid_file})
rm -f ${dbus_pid_file} ${dbus_add_file}
exit 1
}
trap "{ clean; }" EXIT
export DBUS_SESSION_BUS_ADDRESS=$(cat ${dbus_add_file})
/bin/init-checkconf ${config}
@learntoswim
Copy link

Very helpful. Thanks!

@bool-dev
Copy link

👍

@aguynamedben
Copy link

@stuthedew
Copy link

Thank you!

@istvanfazakas
Copy link

👍

@guss77
Copy link

guss77 commented Nov 4, 2015

👍

@franz-josef-kaiser
Copy link

Problem only appears when the DISPLAY is not set. Example quick fix:

export DISPLAY=:0
init-checkconf -d /etc/init/your-service.conf

@alexdunae
Copy link

Thank you! You bailed me out on a Friday night.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment