This file is indexed.

/usr/share/puppet/modules.available/puppet-community-mcollective/spec/fixtures/modules/site_mcollective/manifests/client.pp is in puppet-module-puppet-community-mcollective 0.6.2-2.

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
#
class site_mcollective::client {
  mcollective::user { 'root':
    homedir     => '/root',
    certificate => "puppet:///modules/${module_name}/certs/root.pem",
    private_key => "puppet:///modules/${module_name}/private_keys/root.pem",
  }

  mcollective::user { 'vagrant':
    certificate => "puppet:///modules/${module_name}/certs/vagrant.pem",
    private_key => "puppet:///modules/${module_name}/private_keys/vagrant.pem",
  }
}