Documentation by YARD 0.9.26
+Alphabetic Index
+ +Puppet Class Listing A-Z
+ + +
+
+
+
|
+
File Listing
+-
+
+
+
- README + + +
diff --git a/doc/_index.html b/doc/_index.html new file mode 100644 index 0000000..a34b0bb --- /dev/null +++ b/doc/_index.html @@ -0,0 +1,123 @@ + + +
+ + +
+
+
+
|
+
| t |
+ + + +6 +7 +8 +9 +10+ |
+
+ # File 'manifests/init.pp', line 6
+
+class puppet_cd {
+
+ include puppet_cd::params
+
+}
+ |
+
puppet_cd::main::config.pp Module name: puppet_cd Author: Arne Teuke +(arne_teuke@confdroid)
+ +
+ + + +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33+ |
+
+ # File 'manifests/main/config.pp', line 6
+
+class puppet_cd::main::config (
+
+) inherits puppet_cd::params {
+
+ # test
+
+ # Debug all facts
+ notify { "All facts: ${facts} ": }
+ # fqdn
+ notify { "All facts: ${facts} ": }
+
+
+ #if $facts['fqdn'] == $server_facts['servername'] {
+ # notify { "This is the Puppet master node": }
+ #}
+
+ #if $fqdn == $pt_puppetmaster {
+ # notify {"Me Puppetmasster":}
+ #}
+
+ #if $fqdn != $pt_puppetmaster {
+ # notify {"BAA":}
+ #}
+
+# Notify the node's FQDN
+notify { "This node's FQDN is ${facts['fqdn']}": }
+
+}
+ |
+
puppet_cd::params.pp Module name: puppet_cd Author: Arne Teuke +(arne_teuke@confdroid)
+ +
+ + + +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17+ |
+
+ # File 'manifests/params.pp', line 6
+
+class puppet_cd::params (
+
+ $pt_manage_fw = true,
+ $pt_puppetmaster = 'client001.studydivision.local',
+
+) {
+
+#
+ # includes must be last
+ include puppet_cd::main::config
+
+}
+ |
+