summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 86c9843..88d25e6 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -44,7 +44,7 @@ class sshd {
}
}
-define sshd::sshd_config (
+define sshd::sshd_config(
$source => ''
){
$real_source = $source ? {
@@ -52,7 +52,7 @@ define sshd::sshd_config (
default => $source,
}
- $real_allowed_users = ? $sshd_allowed_users ? {
+ $real_allowed_users = $sshd_allowed_users ? {
'' => 'root',
default => $sshd_allowed_users,
}