This file is indexed.

/usr/share/puppet/modules.available/puppet-community-mcollective/manifests/common/setting.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
# Define - mcollective::common::setting
define mcollective::common::setting (
  $value,
  $setting = $name,
  $order = '10',
) {
  mcollective::setting { "mcollective::common::setting ${title}":
    setting => $setting,
    value   => $value,
    target  => [ 'mcollective::server', 'mcollective::client' ],
    order   => '50',
  }
}