aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-12-26 11:59:51 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-12-26 11:59:51 +0100
commita644e2eb6abeaecf8a27c2fc1ac76b053566fcd9 (patch)
treefbb51c39678974936f98f56336aa5e82967f7e46
parentMerge branch 'master' of git.hornquist.se:git/wiki-public (diff)
downloadwiki-public-a644e2eb6abeaecf8a27c2fc1ac76b053566fcd9.tar.gz
wiki-public-a644e2eb6abeaecf8a27c2fc1ac76b053566fcd9.tar.xz
mån 26 dec 2022 11:59:51 CET
-rw-r--r--index.wiki2
-rw-r--r--puppet.wiki12
2 files changed, 12 insertions, 2 deletions
diff --git a/index.wiki b/index.wiki
index e6c015c..d5615e6 100644
--- a/index.wiki
+++ b/index.wiki
@@ -92,8 +92,6 @@
- [[Terminal Colors]]
- [[HTML Footnotes]]
- [[Wordpress Calendar Plugins]]
-
-== Misc ==
- [[Lisp Quine]]
- [[PEP3131]]
- [[Unicode Boxes]]
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 {