/usr/share/upstart/sessions/url-dispatcher.conf is in url-dispatcher 0.1+16.04.20151110-0ubuntu2.
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 | description "URL Dispatcher"
author "Ted Gould <ted@ubuntu.com>"
start on started dbus
stop on stopping dbus
respawn
emits application-start
script
/usr/lib/x86_64-linux-gnu/url-dispatcher/url-dispatcher
if [ $? -ne 0 ]; then
retval = $?
rm -rf ${HOME}/.cache/url-dispatcher/urls-1.db*
start url-dispatcher-refresh
exit $retval
fi
end script
|