This commit is contained in:
Gabriel M. Schuyler 2016-03-24 15:22:33 +00:00
commit be5110fc6f
4 changed files with 14 additions and 4 deletions

View File

@ -1,6 +1,8 @@
# This role would be made of all the profiles that need to be included to make
# a database server work.
class role::database_server { 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 include profile::base

View File

@ -1,3 +1,6 @@
class role::example { class role::example {
# All roles should include the base profile
include profile::base
} }

View File

@ -1,5 +1,8 @@
class role::gitlab { class role::gitlab {
# All roles should include the base profile
include profile::base
include profile::gitlab include profile::gitlab
} }

View File

@ -1,6 +1,8 @@
# This role would be made of all the profiles that need to be included to make
# a webserver work
class role::webserver { 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 include profile::base