Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Commit

Permalink
Lint with puppet-lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mcanevet committed Mar 31, 2017
1 parent c5d0400 commit 5177a93
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions manifests/config/java_arg.pp
Expand Up @@ -3,9 +3,9 @@
$ensure = 'present',
$setting_type = undef, # For helper
) {
Class['puppetserver::install'] ->
Puppetserver::Config::Java_arg[$title] ~>
Class['puppetserver::service']
Class['puppetserver::install']
-> Puppetserver::Config::Java_arg[$title]
~> Class['puppetserver::service']

case $ensure {
'present': {
Expand Down
4 changes: 2 additions & 2 deletions manifests/hiera/eyaml.pp
Expand Up @@ -13,8 +13,8 @@
}

'gpg': {
package { 'ruby_gpg': } ->
package { 'hiera-eyaml-gpg': }
package { 'ruby_gpg': }
-> package { 'hiera-eyaml-gpg': }
}

default: {
Expand Down
10 changes: 5 additions & 5 deletions manifests/init.pp
Expand Up @@ -7,9 +7,9 @@
$manage_service = true,
$config = {},
) {
anchor { 'puppetserver::begin': } ->
class { '::puppetserver::install': } ->
class { '::puppetserver::config': } ~>
class { '::puppetserver::service': } ->
anchor { 'puppetserver::end': }
anchor { 'puppetserver::begin': }
-> class { '::puppetserver::install': }
-> class { '::puppetserver::config': }
~> class { '::puppetserver::service': }
-> anchor { 'puppetserver::end': }
}

0 comments on commit 5177a93

Please sign in to comment.