diff options
| author | duritong <peter.meier+github@immerda.ch> | 2013-02-04 12:40:26 -0800 | 
|---|---|---|
| committer | duritong <peter.meier+github@immerda.ch> | 2013-02-04 12:40:26 -0800 | 
| commit | ad6ecdffe7d8267d1bfa74ece164ee1129ca8d26 (patch) | |
| tree | 3f4369f8d4e738f074d3cf849683fd5a356ee6e0 /manifests/debian.pp | |
| parent | ef73d094dcd10d9c8729d6b29cefffe962a9e3f4 (diff) | |
| parent | 7743650cde95129b4ace3ca14082ae3e47d671b6 (diff) | |
| download | puppet-sshd-ad6ecdffe7d8267d1bfa74ece164ee1129ca8d26.tar.gz puppet-sshd-ad6ecdffe7d8267d1bfa74ece164ee1129ca8d26.tar.bz2 | |
Merge pull request #2 from mmoll/style
style fixes
Diffstat (limited to 'manifests/debian.pp')
| -rw-r--r-- | manifests/debian.pp | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/manifests/debian.pp b/manifests/debian.pp index 45eb901..ced5db7 100644 --- a/manifests/debian.pp +++ b/manifests/debian.pp @@ -8,14 +8,14 @@ class sshd::debian inherits sshd::linux {    }    $sshd_restartandstatus = $::lsbdistcodename ? { -    etch => false, +    etch    => false,      default => true    }    Service[sshd]{ -    name => 'ssh', -    pattern => 'sshd', -    hasstatus => $sshd_restartandstatus, +    name       => 'ssh', +    pattern    => 'sshd', +    hasstatus  => $sshd_restartandstatus,      hasrestart => $sshd_restartandstatus,    }  } | 
