This file is indexed.

/usr/share/puppet/modules.available/sbitio-monit/manifests/service.pp is in puppet-module-sbitio-monit 1.0.0-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
class monit::service {

  if $caller_module_name != $module_name {
    warning("${name} is not part of the public API of the ${module_name} module and should not be directly included in the manifest.")
  }

  service { $monit::service:
    ensure => $monit::service_ensure,
    enable => $monit::service_enable,
  }
}