Skip to content

Instantly share code, notes, and snippets.

@jtimberman
Created July 31, 2009 18:32
Show Gist options
  • Save jtimberman/159360 to your computer and use it in GitHub Desktop.
Save jtimberman/159360 to your computer and use it in GitHub Desktop.
name "base"
description "Base role is applied to all servers."
recipes %w{
runit
ruby
perl
zsh
man
sudo
openssh
postfix
build-essential
openldap::auth
rsyslog::client
chef::client
}
default_attributes(
"chef" => { "server_fqdn" => "chef.example.com" },
"authorization" => { "sudo" => { "groups" => [ "sysadmin" ] } },
"rsyslog" => { "server" => false },
"openldap" => {
"server" => "ldap.example.com",
"basedn" => "dc=example,dc=com"
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment