summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorGabriel Filion <lelutin@gmail.com>2012-07-18 15:04:47 -0400
committerGabriel Filion <lelutin@gmail.com>2012-07-18 15:04:47 -0400
commit4b9884492bace346bac82fd88fac95f6b9326081 (patch)
treeece3ab5eea1194fef05f8470b9aa1f4a9be6c187 /manifests
parentf1a00a32e83dc3bc3d1794c46460a291fe79d65e (diff)
Move oddly-placed closing bracket
usually, closing a curly bracket on the same line as the code is done when it is opened on the same line, too. here we'd rather align it to the "default:" to make the code easier to read. Signed-off-by: Gabriel Filion <lelutin@gmail.com>
Diffstat (limited to 'manifests')
-rw-r--r--manifests/module.pp3
1 files changed, 2 insertions, 1 deletions
diff --git a/manifests/module.pp b/manifests/module.pp
index 1d577dd..73aeb29 100644
--- a/manifests/module.pp
+++ b/manifests/module.pp
@@ -22,6 +22,7 @@ define apache::module (
}
}
default: {
- err('Your operating system does not have a module deployment mechanism defined') }
+ err('Your operating system does not have a module deployment mechanism defined')
+ }
}
}