git.lirion.de

Of git, get, and gud

summaryrefslogtreecommitdiffstats
path: root/site-modules/role
diff options
context:
space:
mode:
Diffstat (limited to 'site-modules/role')
-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
3 files changed, 5 insertions, 4 deletions
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
}