base role, imported from github.com/rcbops/chef-cookbooks

This commit is contained in:
mattray
2012-06-18 20:40:37 -05:00
parent 37a1fb1c14
commit 5a2a7b82d5

11
roles/base.rb Normal file
View File

@@ -0,0 +1,11 @@
name "base"
description "Base role for a server"
run_list(
"recipe[openssh]",
"recipe[ntp]"
)
default_attributes(
"ntp" => {
"servers" => ["0.pool.ntp.org", "1.pool.ntp.org", "2.pool.ntp.org"]
}
)