Add a site directory with example role and profile module

This commit is contained in:
Nick Walker 2015-05-27 15:02:50 -07:00
parent 944a0300cf
commit 24aa475d20
3 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class profile::base {
#the base profile should include component modules that will be on all nodes
}

View File

@ -0,0 +1,7 @@
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
}

View File

@ -0,0 +1,7 @@
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
}