diff options
author | mail_redacted_for_web | 2015-05-27 15:02:50 -0700 |
---|---|---|
committer | mail_redacted_for_web | 2015-05-27 15:02:50 -0700 |
commit | 24aa475d20c413aa3d2925a110be767176989ef3 (patch) | |
tree | 91bd38e1e17a29aa54a7330761eb5add4ccb5867 | |
parent | 944a0300cf187c97db8ffdeb3507b0d8b2dc4182 (diff) | |
download | control-repo-template-24aa475d20c413aa3d2925a110be767176989ef3.tar.bz2 |
Add a site directory with example role and profile module
-rw-r--r-- | site/profile/manifests/base.pp | 5 | ||||
-rw-r--r-- | site/role/manifests/database_server.pp | 7 | ||||
-rw-r--r-- | site/role/manifests/webserver.pp | 7 |
3 files changed, 19 insertions, 0 deletions
diff --git a/site/profile/manifests/base.pp b/site/profile/manifests/base.pp new file mode 100644 index 0000000..ae85e65 --- /dev/null +++ b/site/profile/manifests/base.pp @@ -0,0 +1,5 @@ +class profile::base { + + #the base profile should include component modules that will be on all nodes + +} diff --git a/site/role/manifests/database_server.pp b/site/role/manifests/database_server.pp new file mode 100644 index 0000000..8c37438 --- /dev/null +++ b/site/role/manifests/database_server.pp @@ -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 + +} diff --git a/site/role/manifests/webserver.pp b/site/role/manifests/webserver.pp new file mode 100644 index 0000000..314fa55 --- /dev/null +++ b/site/role/manifests/webserver.pp @@ -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 + +} |