diff options
author | Micah Anderson <micah@riseup.net> | 2009-10-01 18:30:02 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2009-10-01 18:30:02 -0400 |
commit | 6601c382962824e7467fb00ea5a84894a901b937 (patch) | |
tree | 8f241b3aec57ed40d26964ed2ce57ca0cece4d27 /manifests/init.pp | |
parent | d4fba70a51eeb253b0155f378ce7735df9479cd4 (diff) | |
download | puppet-sshd-6601c382962824e7467fb00ea5a84894a901b937.tar.gz puppet-sshd-6601c382962824e7467fb00ea5a84894a901b937.tar.bz2 |
Revert "fix missing curly brace" -- this was actually correct
This reverts commit d4fba70a51eeb253b0155f378ce7735df9479cd4.
Diffstat (limited to 'manifests/init.pp')
-rw-r--r-- | manifests/init.pp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 092697c..386bd77 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -263,10 +263,9 @@ class sshd::base { } class sshd::linux inherits sshd::base { - if $sshd_ensure_version == '' { $sshd_ensure_version = 'installed' } { - package {'openssh': - ensure => $sshd_ensure_version, - } + if $sshd_ensure_version == '' { $sshd_ensure_version = 'installed' } + package {'openssh': + ensure => $sshd_ensure_version, } File[sshd_config]{ require +> Package[openssh], |