summaryrefslogtreecommitdiff
path: root/code/environments/production/modules/stdlib/manifests/init.pp
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2018-09-20 14:51:33 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2018-09-20 14:51:33 +0200
commit06e2a1dab40b7010081e97924bd216ccc16a1602 (patch)
tree5b21e3e204c92e13ede3b78a36744e4e63af09d8 /code/environments/production/modules/stdlib/manifests/init.pp
parent0203c3892bb3b7ce5037fe25ed33096813185379 (diff)
downloadpuppet.KATH-06e2a1dab40b7010081e97924bd216ccc16a1602.tar.gz
puppet.KATH-06e2a1dab40b7010081e97924bd216ccc16a1602.tar.bz2
puppet.KATH-06e2a1dab40b7010081e97924bd216ccc16a1602.zip
Bundles puppetlabs-stdlib 4.25.1.
Diffstat (limited to 'code/environments/production/modules/stdlib/manifests/init.pp')
-rw-r--r--code/environments/production/modules/stdlib/manifests/init.pp18
1 files changed, 18 insertions, 0 deletions
diff --git a/code/environments/production/modules/stdlib/manifests/init.pp b/code/environments/production/modules/stdlib/manifests/init.pp
new file mode 100644
index 0000000..9ea22a7
--- /dev/null
+++ b/code/environments/production/modules/stdlib/manifests/init.pp
@@ -0,0 +1,18 @@
+# Class: stdlib
+#
+# This module manages stdlib. Most of stdlib's features are automatically
+# loaded by Puppet, but this class should be declared in order to use the
+# standardized run stages.
+#
+# Parameters: none
+#
+# Actions:
+#
+# Declares all other classes in the stdlib module. Currently, this consists
+# of stdlib::stages.
+#
+# Requires: nothing
+#
+class stdlib {
+ include ::stdlib::stages
+}