-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean installation of the Kitchenplan configs for user giuseppe
- Loading branch information
Giuseppe Correnti
committed
Jul 3, 2014
0 parents
commit 9057f09
Showing
7 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Gemfile | ||
/vendor | ||
kitchenplan-attributes.json | ||
solo.rb | ||
Cheffile.lock | ||
.bundle | ||
.librarian | ||
Gemfile.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
site "http://community.opscode.com/api/v1" | ||
|
||
cookbook "homebrewalt", :github => "kitchenplan/chef-homebrewalt", :ref => "v1.8.4" | ||
cookbook "nodejs", :github => "kitchenplan/chef-nodejs", :ref => "v1.1" | ||
cookbook "applications", :github => "kitchenplan/chef-applications", :ref => "v2.0.2" | ||
cookbook "osxdefaults", :github => "kitchenplan/chef-osxdefaults", :ref => "v1.0.2" | ||
cookbook "dotfiles", :github => "kitchenplan/chef-dotfiles", :ref => "v1.1" | ||
cookbook "drivers", :github => "kitchenplan/chef-drivers", :ref => "v1.0" | ||
cookbook "sudoalt", :github => "kitchenplan/chef-sudoalt", :ref => "v2.4" | ||
cookbook "dmg", :github => "opscode-cookbooks/dmg", :ref => "v2.1.4" | ||
cookbook "composer", :github => "kitchenplan/chef-composer", :ref => "v1.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Kitchenplan Configuration | ||
|
||
This is a Kitchenplan configuration repository. This repository contains all configuration to install and configure our OSX workstations. More information about Kitchenplan and on how to use it can be found in the [Kitchenplan README](https://github.com/kitchenplan/kitchenplan). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
recipes: # Configs are parsed and every list is appended to each other, chef handles order and de-duplication | ||
global: # Recipes mentioned under "global" are installed for all operating systems (we used to support linux, and may do so in the future) | ||
- applications::create_var_chef_cache | ||
mac_os_x: # Recipes mentioned under "mac_os_x" are installed on OSX and OSX Server | ||
- homebrewalt::default # Installs homebrew and homebrew cask and installs all apps mentioned in the homebrewalt:apps and homebrewalt:cask_apps attributes | ||
- nodejs::default # Installs nodejs and installs all nodejs packages mentioned in the nodejs:apps attribute | ||
attributes: | ||
homebrewalt: | ||
apps: | ||
- git | ||
cask_apps: | ||
- google-chrome | ||
cask_fonts: | ||
- inconsolata | ||
nodejs: | ||
apps: | ||
- bower |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
groups: | ||
- groupb | ||
recipes: | ||
mac_os_x: | ||
- osxdefaults::set_terminal_profile | ||
attributes: | ||
homebrewalt: | ||
apps: | ||
- git-extras | ||
cask_apps: | ||
- sourcetree |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
recipes: | ||
mac_os_x: | ||
- applications::sublime_text_3 | ||
attributes: | ||
homebrewalt: | ||
apps: | ||
- git-flow | ||
cask_apps: | ||
- slack |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
groups: | ||
- groupa | ||
recipes: | ||
mac_os_x: | ||
- osxdefaults::set_computer_name | ||
attributes: | ||
osxdefaults: | ||
computername: MyComputerName | ||
homebrewalt: | ||
apps: | ||
- git-extras | ||
cask_apps: | ||
- sourcetree |