This file is indexed.

/etc/init/bluetooth-touch.conf is in bluetooth-touch 0.3.3+16.04.20160201-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
# Bluetooth device initialization.
#
# This is a generic script for starting device-specific jobs for bluetooth
# initialization.
#

description     "generic bluetooth initialization"

start on starting bluetooth

task

script
	if [ -x `which getprop` ]; then
		device=`getprop ro.product.device`
		if [ -e /etc/init/bluetooth-touch-$device.conf ]; then
			start bluetooth-touch-$device
		else
			start bluetooth-touch-android
		fi
	fi
end script