Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
saz committed Mar 13, 2014
1 parent 895cbd0 commit 6cb3483
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion manifests/client/config.pp
@@ -1,4 +1,4 @@
class ssh::client::config {
class ssh::client::config {
file { $ssh::params::ssh_config:
ensure => present,
owner => 0,
Expand Down
4 changes: 2 additions & 2 deletions manifests/server/host_key.pp
Expand Up @@ -36,10 +36,10 @@
$private_key_content = '',
) {
if $public_key_source == '' and $public_key_content == '' {
fail("You must provide either public_key_source or public_key_content parameter")
fail('You must provide either public_key_source or public_key_content parameter')
}
if $private_key_source == '' and $private_key_content == '' {
fail("You must provide either private_key_source or private_key_content parameter")
fail('You must provide either private_key_source or private_key_content parameter')
}

$manage_pub_key_content = $public_key_source ? {
Expand Down
2 changes: 1 addition & 1 deletion tests/init.pp
@@ -1 +1 @@
class {"::ssh::server": }
class { '::ssh::server': }

0 comments on commit 6cb3483

Please sign in to comment.