We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f194c22 commit 397f681Copy full SHA for 397f681
lib/puppet/provider/cron/filetype.rb
@@ -1,6 +1,6 @@
1
require 'puppet/util/filetype'
2
3
-class Puppet::Provider::Cron
+class Puppet::Provider::Cron # rubocop:disable Style/ClassAndModuleChildren
4
# This class defines the crontab filetypes
5
class FileType < Puppet::Util::FileType
6
class << self
@@ -26,7 +26,7 @@ def newfiletype(name, &block)
26
# implementation in the future. This way, we can refactor all three of
27
# our cron file types into a common crontab file type.
28
newfiletype(:crontab) do
29
- def initialize(user) # rubocop:disable Lint/MissingSuper
+ def initialize(user)
30
self.path = user
31
end
32
0 commit comments