diff --git a/site/role/manifests/database_server.pp b/site/role/manifests/database_server.pp index aacc912..70095c2 100644 --- a/site/role/manifests/database_server.pp +++ b/site/role/manifests/database_server.pp @@ -1,7 +1,9 @@ +# This role would be made of all the profiles that need to be included to make +# a database server work. + 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 + # All roles should include the base profile include profile::base } diff --git a/site/role/manifests/example.pp b/site/role/manifests/example.pp index 2c1d2d7..e11643d 100644 --- a/site/role/manifests/example.pp +++ b/site/role/manifests/example.pp @@ -1,3 +1,6 @@ class role::example { + # All roles should include the base profile + include profile::base + } diff --git a/site/role/manifests/gitlab.pp b/site/role/manifests/gitlab.pp index 1f459d6..b588ed9 100644 --- a/site/role/manifests/gitlab.pp +++ b/site/role/manifests/gitlab.pp @@ -1,5 +1,8 @@ class role::gitlab { + # All roles should include the base profile + include profile::base + include profile::gitlab } diff --git a/site/role/manifests/webserver.pp b/site/role/manifests/webserver.pp index 314fa55..5ef48a1 100644 --- a/site/role/manifests/webserver.pp +++ b/site/role/manifests/webserver.pp @@ -1,7 +1,9 @@ +# This role would be made of all the profiles that need to be included to make +# a webserver work + 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 + # All roles should include the base profile include profile::base }