git.lirion.de

Of git, get, and gud

summaryrefslogtreecommitdiffstats
path: root/manifests
diff options
context:
space:
mode:
authormail_redacted_for_web 2016-03-23 10:31:33 -0700
committermail_redacted_for_web 2016-03-29 15:53:10 -0700
commit2c98a9264c2070281dc7628d5bcb176eb0fdb200 (patch)
tree1e2cb5f1319855b14b972a034dc6a7c9ada9199f /manifests
parentb3519dd48cebfcdbf1dea4b42e8857e21e6f05a2 (diff)
downloadcontrol-repo-template-2c98a9264c2070281dc7628d5bcb176eb0fdb200.tar.bz2
Reduce the scope of the control-repo to mostly an example
Prior to this commit, the control-repo was an example of the structure of a control repo but it also included puppet code to help setup code manager and instructions to get that all setup in a very specific way. This was great for users that wanted to follow those instructions exactly but wasn't great for people just looking for an example to start from. After this commit, the control-repo will be just an example once again and a new repo somehwere else will pop up to provide the explicit instructions on how to use the example with code manager. There are links added to puppetlabs/control-repo to a new repo that will have a version of the code that once lived in puppetlabs/control-repo
Diffstat (limited to 'manifests')
-rw-r--r--manifests/site.pp8
1 files changed, 0 insertions, 8 deletions
diff --git a/manifests/site.pp b/manifests/site.pp
index 04b3d6e..5573ee0 100644
--- a/manifests/site.pp
+++ b/manifests/site.pp
@@ -26,14 +26,6 @@ File { backup => false }
# specified in the console for that node.
node default {
- #incude a role on any node that specifies it's role via a trusted fact at provision time
- #https://docs.puppetlabs.com/puppet/latest/reference/lang_facts_and_builtin_vars.html#trusted-facts
- #https://docs.puppetlabs.com/puppet/latest/reference/ssl_attributes_extensions.html#aws-attributes-and-extensions-population-example
-
- if !empty( $trusted['extensions']['pp_role'] ) {
- include "role::${trusted['extensions']['pp_role']}"
- }
-
# This is where you can declare classes for all nodes.
# Example:
# class { 'my_class': }