Skip to content

Instantly share code, notes, and snippets.

@abondis
Created July 15, 2011 15:05
Show Gist options
  • Save abondis/1084864 to your computer and use it in GitHub Desktop.
Save abondis/1084864 to your computer and use it in GitHub Desktop.
base role
{
"name": "base",
"description": "Basic role for any client",
"json_class": "Chef::Role",
"default_attributes": {
"authorization": {
"sudo": {
"groups": [
"sysadmin"
],
"passwordless": true
}
},
"chef_client": {
"server_url": "https://chef-server"
}
},
"override_attributes": {
},
"chef_type": "role",
"run_list": [
"recipe[recipe[chef-client::delete_validation]",
"recipe[chef-client::config]",
"recipe[chef-client]",
"recipe[vim]",
"recipe[screen]",
"recipe[git]",
"recipe[sudo]",
"recipe[setbasics]"
],
"env_run_lists": {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment