This file is indexed.

/usr/share/puppet/modules.available/puppet-community-mcollective/manifests/server/config/rpcauthprovider/action_policy.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
14
15
16
17
18
19
20
# private class
class mcollective::server::config::rpcauthprovider::action_policy {
  if $caller_module_name != $module_name {
    fail("Use of private class ${name} by ${caller_module_name}")
  }

  mcollective::plugin { 'actionpolicy': }

  mcollective::server::setting { 'rpcauthorization':
    value => 1,
  }

  mcollective::server::setting { 'rpcauthprovider':
    value => 'action_policy',
  }

  mcollective::server::setting { 'plugin.actionpolicy.allow_unconfigured':
    value => $mcollective::allowunconfigured,
  }
}