git.lirion.de

Of git, get, and gud

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormail_redacted_for_web 2022-09-22 11:14:48 -0700
committermail_redacted_for_web 2022-09-22 11:14:48 -0700
commit565607dc6b2cbab99e0c9a66ea361757678b5fb7 (patch)
treec0395e0dd698522db679cc402036fa8e164d3295
parentcd451fd858e58080b4a201a8b1998df8049ccef4 (diff)
parentbd6640ef12c79f7bcbe426e724d60a4010d332d3 (diff)
downloadcontrol-repo-template-565607dc6b2cbab99e0c9a66ea361757678b5fb7.tar.bz2
Merge pull request #112 from 16c7x/class_documentationproduction
Moved the roles and profile comments to the top
-rw-r--r--site-modules/profile/manifests/base.pp3
-rw-r--r--site-modules/profile/manifests/example.pp1
-rw-r--r--site-modules/role/manifests/database_server.pp4
-rw-r--r--site-modules/role/manifests/example.pp1
-rw-r--r--site-modules/role/manifests/webserver.pp4
5 files changed, 7 insertions, 6 deletions
diff --git a/site-modules/profile/manifests/base.pp b/site-modules/profile/manifests/base.pp
index ae85e65..b9e130d 100644
--- a/site-modules/profile/manifests/base.pp
+++ b/site-modules/profile/manifests/base.pp
@@ -1,5 +1,4 @@
+# The base profile should include component modules that will be on all nodes
class profile::base {
- #the base profile should include component modules that will be on all nodes
-
}
diff --git a/site-modules/profile/manifests/example.pp b/site-modules/profile/manifests/example.pp
index 0b48c3a..6505aa9 100644
--- a/site-modules/profile/manifests/example.pp
+++ b/site-modules/profile/manifests/example.pp
@@ -1,3 +1,4 @@
+# An example profile
class profile::example {
}
diff --git a/site-modules/role/manifests/database_server.pp b/site-modules/role/manifests/database_server.pp
index aacc912..59cbc0f 100644
--- a/site-modules/role/manifests/database_server.pp
+++ b/site-modules/role/manifests/database_server.pp
@@ -1,7 +1,7 @@
+# This role would be made of all the profiles that need to be included to make a database server work
+# All roles should include the base profile
class role::database_server {
- #This role would be made of all the profiles that need to be included to make a database server work
- #All roles should include the base profile
include profile::base
}
diff --git a/site-modules/role/manifests/example.pp b/site-modules/role/manifests/example.pp
index 2c1d2d7..35666bb 100644
--- a/site-modules/role/manifests/example.pp
+++ b/site-modules/role/manifests/example.pp
@@ -1,3 +1,4 @@
+# An example role
class role::example {
}
diff --git a/site-modules/role/manifests/webserver.pp b/site-modules/role/manifests/webserver.pp
index 314fa55..ce943a0 100644
--- a/site-modules/role/manifests/webserver.pp
+++ b/site-modules/role/manifests/webserver.pp
@@ -1,7 +1,7 @@
+# This role would be made of all the profiles that need to be included to make a webserver work
+# All roles should include the base profile
class role::webserver {
- #This role would be made of all the profiles that need to be included to make a webserver work
- #All roles should include the base profile
include profile::base
}