diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-11-25 14:55:11 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-11-25 14:55:11 -0200 |
commit | 6aee2a78f75bfc01484b1591a10bda0de75ec95c (patch) | |
tree | 117a061d95215e87cb6ea13ff76fe55595112fc7 | |
parent | 351961dfdd6df0dc889b3ebddfad1981aa8a4a5c (diff) | |
download | puppet-nodo-6aee2a78f75bfc01484b1591a10bda0de75ec95c.tar.gz puppet-nodo-6aee2a78f75bfc01484b1591a10bda0de75ec95c.tar.bz2 |
Syntax fix (2)
-rw-r--r-- | manifests/subsystems/domain.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/subsystems/domain.pp b/manifests/subsystems/domain.pp index 436221a..337fd0e 100644 --- a/manifests/subsystems/domain.pp +++ b/manifests/subsystems/domain.pp @@ -19,10 +19,10 @@ class domain { case $file { true: { - $command = "$cert_check -f ${file}", + $command = "$cert_check -f ${file}" } false, default: { - $command = "$cert_check -d ${name}", + $command = "$cert_check -d ${name}" } } |