This file is indexed.

/usr/share/upstart/sessions/url-dispatcher-refresh.conf is in url-dispatcher 0.1+14.04.20140403-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
22
23
24
description "Ensure the URL dispatcher database is up-to-date, likely at session init"

start on started url-dispatcher

emits url-dispatcher-update

# Work around for: https://bugs.launchpad.net/upstart/+bug/1302117

umask 0022

# end work around

pre-start script
# If we're starting with url-dispatcher let's let the rest of the
# system have a chance to settle.
	if [ "$UPSTART_EVENTS" = "started" ] ; then
		sleep 60
	fi
end script

script
	initctl emit --no-wait url-dispatcher-update "MATCH=$HOME/.config/url-dispatcher/urls/"
	initctl emit --no-wait url-dispatcher-update "MATCH=/usr/share/url-dispatcher/urls/"
end script