This file is indexed.

/usr/share/puppet/modules.available/puppetlabs-apache/lib/puppet/provider/a2mod/modfix.rb is in puppet-module-puppetlabs-apache 3.0.0-1.

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
Puppet::Type.type(:a2mod).provide :modfix do
  desc "Dummy provider for A2mod.

  Fake nil resources when there is no crontab binary available. Allows
  puppetd to run on a bootstrapped machine before a Cron package has been
  installed. Workaround for: http://projects.puppetlabs.com/issues/2384
  "

  def self.instances
    []
  end
end