From 32cab653c2ae46d0e44c0933b0dc13cdf09e7b08 Mon Sep 17 00:00:00 2001 From: jtimberman Date: Thu, 25 Feb 2010 10:20:13 -0700 Subject: [PATCH] rename base example role, and comment run_list and attributes by default --- roles/{base.rb => base_example.rb} | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) rename roles/{base.rb => base_example.rb} (50%) diff --git a/roles/base.rb b/roles/base_example.rb similarity index 50% rename from roles/base.rb rename to roles/base_example.rb index ba7482d..c3db5ca 100644 --- a/roles/base.rb +++ b/roles/base_example.rb @@ -1,10 +1,10 @@ -name "base" +name "base_example" description "Base role applied to all nodes." -# List of recipes and roles to apply. -run_list() +# List of recipes and roles to apply. Requires Chef 0.8, earlier versions use 'recipes()'. +#run_list() # Attributes applied if the node doesn't have it set already. -default_attributes() +#default_attributes() # Attributes applied no matter what the node has set already. -override_attributes() +#override_attributes()