This file is indexed.

/etc/cfengine/update.conf is in debian-edu-config 1.702.

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
33
34
###############################################################################
#
# update.conf - ensure that the inputs and binaries in /etc/cfengine are
# synced to those on the server.
# 
# This copies the cfagent.conf and inputs directory from the cfengine
# server.
#
###############################################################################

control:
	actionsequence = ( copy links )
	DefaultCopyType = ( checksum )

	cfhost = ( cfservd.intern )
	localdir = ( /etc/cfengine )
	serverdir = ( /etc/cfengine )
	mode = ( 700 )
	fowner = ( root )
	fgroup = ( root )

copy:
	$(serverdir)/inputs
		dest=$(localdir)/inputs
		recurse=inf
		owner=$(fowner) group=$(fgroup)
		mode=$(mode)
		exclude=*~
		exclude=#*
		server=$(cfhost)
		trustkey=true

links:
	$(localdir)/cfagent.conf ->! $(localdir)/inputs/cfagent.conf