This file is indexed.

/usr/share/upstart/sessions/url-dispatcher.conf is in url-dispatcher 0.1+17.04.20170328-0ubuntu4.

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
22
23
24
description "URL Dispatcher"
author "Ted Gould <ted@ubuntu.com>"

start on started unity8
stop on stopping unity8

respawn

emits application-start
emits untrusted-helper-type-end

script
	${SNAP}/usr/lib/x86_64-linux-gnu/url-dispatcher/url-dispatcher
	if [ $? -ne 0 ]; then
		retval = $?
		rm -rf "${XDG_CACHE_HOME:-$HOME/.cache}"/url-dispatcher/urls-1.db*
		start url-dispatcher-refresh
		exit $retval
	fi
end script

post-stop script
	initctl emit untrusted-helper-type-end HELPER_TYPE=url-overlay
end script