aboutsummaryrefslogtreecommitdiff
path: root/puppet.wiki
diff options
context:
space:
mode:
Diffstat (limited to 'puppet.wiki')
-rw-r--r--puppet.wiki12
1 files changed, 12 insertions, 0 deletions
diff --git a/puppet.wiki b/puppet.wiki
index 63c43c3..3bb7286 100644
--- a/puppet.wiki
+++ b/puppet.wiki
@@ -45,6 +45,18 @@ $variable ? {
}
}}}
+==== On Undef ====
+{{{puppet
+$debug_api = $irc_bridge_debug_port ? {
+ Undef => { 'enabled' => false },
+ String => {
+ 'enabled' => false,
+ 'port' => $irc_bridge_debug_port,
+ },
+}
+}}}
+
+
=== Regular Case ===
{{{puppet
case $variable {