This file is indexed.

/etc/puppet/modules/orchestra-apt/manifests/debian/testing.pp is in ubuntu-orchestra-modules-common 1.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
# testing.pp

class apt::debian::testing {

	# deb http://debian.mirror.iweb.ca/debian/ testing main contrib non-free
	# deb-src http://debian.mirror.iweb.ca/debian/ testing main contrib non-free
	# Key: 55BE302B  Server: subkeys.pgp.net
	# debian-keyring
	# debian-archive-keyring
	
	apt::source { "debian_testing":
		location => "http://debian.mirror.iweb.ca/debian/",
		release => "testing",
		repos => "main contrib non-free",
		required_packages => "debian-keyring debian-archive-keyring",
		key => "55BE302B",
		key_server => "subkeys.pgp.net",
		pin => "-10"
	}

}