view modules/apache/lib/puppet/provider/a2mod/modfix.rb @ 216:436be6e59198 puppet-3.6

Blacklist more username probes, including: * numbers * abc123 * botmaster * root with numbers * wp-user (who even runs Wordpress under its own user?)
author IBBoard <dev@ibboard.co.uk>
date Sat, 03 Aug 2019 09:54:10 +0100
parents 956e484adc12
children d9352a684e62
line wrap: on
line source

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