Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix syntax
Browse files Browse the repository at this point in the history
CyBeRoni committed Mar 4, 2014

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent bff4ad6 commit dbabc49
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions manifests/client/install.pp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class ssh::client::install
class ssh::client::install {
if !defined(Package[$ssh::params::client_package_name]) {
package { $ssh::params::client_package_name:
ensure => $ensure,
ensure => $ssh::client::ensure,
}
}
}
6 changes: 2 additions & 4 deletions manifests/server/install.pp
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
class ssh::server::install
class ssh::server::install {
include ssh::params
if !defined(Package[$ssh::params::server_package_name]) {
package { $ssh::params::server_package_name:
ensure => $ensure,
blahblah => $ensure,

ensure => $ssh::server::ensure,
}
}
}

0 comments on commit dbabc49

Please sign in to comment.