summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-07-20 16:57:37 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-07-20 16:57:37 +0000
commit09e0792b9a3c6d237963cf11f38fee7af4fd1dd6 (patch)
treec9a704f73d09c78f08419cd3ef91bb04246ba103
parentc9640a78a67feaebe51cc4f43e12e50cbebea687 (diff)
downloadpuppet-09e0792b9a3c6d237963cf11f38fee7af4fd1dd6.tar.gz
puppet-09e0792b9a3c6d237963cf11f38fee7af4fd1dd6.tar.xz
puppet-09e0792b9a3c6d237963cf11f38fee7af4fd1dd6.zip
more doc modifications
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1407 980ebf18-57e1-0310-9a29-db15c13687c0
-rw-r--r--documentation/documentation/index.page3
-rw-r--r--documentation/documentation/notcfengine.page2
2 files changed, 4 insertions, 1 deletions
diff --git a/documentation/documentation/index.page b/documentation/documentation/index.page
index a4facf6c4..301e0303a 100644
--- a/documentation/documentation/index.page
+++ b/documentation/documentation/index.page
@@ -1,6 +1,7 @@
---
-inMenu: false
+inMenu: true
directoryName: Documentation
+subtreeLevel: 5
---
How to Use This Guide
diff --git a/documentation/documentation/notcfengine.page b/documentation/documentation/notcfengine.page
index 06c86701d..1d3580f07 100644
--- a/documentation/documentation/notcfengine.page
+++ b/documentation/documentation/notcfengine.page
@@ -68,6 +68,7 @@ express relationships between objects. For instance, here is how you might
define a reusable component for creating virtual hosts for apache, as you
might deploy them on Debian:
+<pre><code>
define vhost(ip = "*:80", docroot = false, htmlsource, order = 500, ensure = "enabled") {
# Set the docroot, if necessary
$realdocroot = $docroot ? {
@@ -109,6 +110,7 @@ might deploy them on Debian:
}
}
}
+</code></pre>
Note that you could pull that virtual host configuration into an external
template if you wanted: