This file is indexed.

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

start on started url-dispatcher

emits url-dispatcher-update-user url-dispatcher-update-system

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 url-dispatcher-update-system
	initctl emit url-dispatcher-update-user
end script