Skip to content

Commit

Permalink
puppet-lint: fix arrow_on_right_operand_line
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak committed Apr 11, 2017
1 parent 274db99 commit 95781d1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
trustcacerts => true,
notify => Class['activemq::service'],
require => File["${confdir}/ca.pem"],
} ->
}

file { "${confdir}/truststore.jks":
owner => 'activemq',
Expand All @@ -90,8 +90,8 @@
File["${confdir}/server_cert.pem"],
File["${confdir}/server_private.pem"],
],
} ->
file { "${confdir}/keystore.jks":
}
-> file { "${confdir}/keystore.jks":
owner => 'activemq',
group => 'activemq',
mode => '0400',
Expand Down
4 changes: 2 additions & 2 deletions manifests/client.pp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
contain ::mcollective::client::install
contain ::mcollective::client::config

Class['mcollective::client::install'] ->
Class['mcollective::client::config']
Class['mcollective::client::install']
-> Class['mcollective::client::config']
}
4 changes: 2 additions & 2 deletions manifests/common.pp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
contain ::mcollective::common::install
contain ::mcollective::common::config

Class['mcollective::common::install'] ->
Class['mcollective::common::config']
Class['mcollective::common::install']
-> Class['mcollective::common::config']

}
6 changes: 3 additions & 3 deletions manifests/server.pp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
contain ::mcollective::server::config
contain ::mcollective::server::service

Class['mcollective::server::install'] ->
Class['mcollective::server::config'] ~>
Class['mcollective::server::service']
Class['mcollective::server::install']
-> Class['mcollective::server::config']
~> Class['mcollective::server::service']
}

0 comments on commit 95781d1

Please sign in to comment.