This file is indexed.

/usr/share/pyshared/ZConfig/tests/input/simple.conf is in python-zconfig 2.9.3-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
25
26
27
28
29
30
31
32
empty

var1 abc
int-var  12
float-var	12.02
neg-int -2

true-var-1 true
true-var-2 on
true-var-3 yes

false-var-1 false
false-var-2 off
false-var-3 no

list-1
list-2 abc
list-3 abc def ghi
list-4 	[  what	now? 	]

# These test the %define mechanism:

%define dollars $$$$
%define empty
%define name value
%define twowords two words

getname $name
getnametwice $name${name}
getdollars $dollars
getempty x${empty}y
getwords abc $twowords def