
In anticipation of puppet 4, start trying to deal with puppet 4 things that can be helpfully predicted by puppet lint plugins. Also fix errors caught by the puppet-lint-absolute_classname-check gem and arrow alignment errors that weren't being caught before. This patch leaves the puppet-lint-empty_string-check commented out for now since there are too many parameters with empty string defaults. Change-Id: I0b8cf61bd71f7875b9741fff78aef40c5bc513bd
11 lines
216 B
Puppet
11 lines
216 B
Puppet
# == Class: gerrit::remotes
|
|
#
|
|
class gerrit::remotes($ensure=present) {
|
|
file { '/home/gerrit2/remotes.config':
|
|
ensure => absent,
|
|
}
|
|
class { '::jeepyb::fetch_remotes':
|
|
ensure => $ensure,
|
|
}
|
|
}
|