cookbook 'homebrew', '= 1.2.0'
homebrew
(67) Versions
1.2.0
-
-
5.4.8
-
5.4.7
-
5.4.6
-
5.4.5
-
5.4.4
-
5.4.3
-
5.4.2
-
5.4.1
-
5.4.0
-
5.3.8
-
5.3.7
-
5.3.6
-
5.3.5
-
5.3.4
-
5.3.3
-
5.3.2
-
5.3.1
-
5.3.0
-
5.2.2
-
5.2.1
-
5.2.0
-
5.1.1
-
5.1.0
-
5.0.8
-
5.0.7
-
5.0.6
-
5.0.5
-
5.0.4
-
5.0.3
-
5.0.2
-
5.0.1
-
5.0.0
-
4.3.0
-
4.2.1
-
4.2.0
-
4.1.0
-
4.0.0
-
3.0.0
-
2.1.2
-
2.1.0
-
2.0.5
-
2.0.4
-
2.0.3
-
2.0.2
-
2.0.1
-
2.0.0
-
1.13.0
-
1.12.0
-
1.11.0
-
1.10.0
-
1.9.2
-
1.9.0
-
1.8.0
-
1.7.2
-
1.7.0
-
1.6.6
-
1.6.4
-
1.6.2
-
1.6.0
-
1.5.4
-
1.5.2
-
1.5.0
-
1.4.0
-
1.3.2
-
1.3.0
-
1.2.0
-
1.0.0
Follow68
- 5.4.8
- 5.4.7
- 5.4.6
- 5.4.5
- 5.4.4
- 5.4.3
- 5.4.2
- 5.4.1
- 5.4.0
- 5.3.8
- 5.3.7
- 5.3.6
- 5.3.5
- 5.3.4
- 5.3.3
- 5.3.2
- 5.3.1
- 5.3.0
- 5.2.2
- 5.2.1
- 5.2.0
- 5.1.1
- 5.1.0
- 5.0.8
- 5.0.7
- 5.0.6
- 5.0.5
- 5.0.4
- 5.0.3
- 5.0.2
- 5.0.1
- 5.0.0
- 4.3.0
- 4.2.1
- 4.2.0
- 4.1.0
- 4.0.0
- 3.0.0
- 2.1.2
- 2.1.0
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.13.0
- 1.12.0
- 1.11.0
- 1.10.0
- 1.9.2
- 1.9.0
- 1.8.0
- 1.7.2
- 1.7.0
- 1.6.6
- 1.6.4
- 1.6.2
- 1.6.0
- 1.5.4
- 1.5.2
- 1.5.0
- 1.4.0
- 1.3.2
- 1.3.0
- 1.2.0
- 1.0.0
Install Homebrew and includes resources for working with taps and casks
cookbook 'homebrew', '= 1.2.0', :supermarket
knife supermarket install homebrew
knife supermarket download homebrew
Description
This cookbook installs Homebrew
and replaces MacPorts as the default package provider for the
package resource on OS X systems.
This cookbook is now maintained by Opscode. The original author,
maintainer and copyright holder is Graeme Mathieson. The cookbook
remains licensed under the Apache License version 2.
Requirements
Prerequisites
In order for this recipe to work, your userid must own /usr/local
.
This is outside the scope of the cookbook because it’s anticipated
that you’ll run the cookbook as your own user, not root and you’d have
to be root to take ownership of the directory. Easiest way to get
started:
sudo chown -R `whoami`:staff /usr/local
Bear in mind that this will take ownership of the entire folder and its
contents, so if you’ve already got stuff in there (eg MySQL owned by a
mysql
user) you’ll need to be a touch more careful. This is a
recommendation from the Homebrew
Platform
- Mac OS X (10.6+)
The only platform supported by Homebrew itself at the time of this
writing is Mac OS X. It should work fine on Server edition as well,
and on platforms that Homebrew supports in the future.
Resources and Providers
package / homebrew_package
This cookbook provides a package provider called homebrew_package
which will install/remove packages using Homebrew. This becomes the
default provider for package
if your platform is Mac OS X.
As this extends the built-in package resource/provider in Chef, it has
all the resource attributes and actions available to the package
resource. However, a couple notes:
- Homebrew itself doesn't have a notion of "upgrade" per se. The "upgrade" action will simply perform an install, and if the Homebrew Formula for the package is newer, it will upgrade.
- Likewise, Homebrew doesn't have a purge, but the "purge" action will act like "remove".
Examples
package "mysql" do
action :install
end
homebrew_package "mysql"
package "mysql" do
provider Chef::Provider::Package::Homebrew
end
homebrew_tap
LWRP for brew tap
, a Homebrew command used to add additional formula
repositories. From the brew
man page:
tap [tap]
Tap a new formula repository from GitHub, or list existing taps.
tap is of the form user/repo, e.g. brew tap homebrew/dupes.
Default action is :tap
which enables the repository. Use :untap
to
disable a tapped repository.
Examples
homebrew_tap "homebrew/dupes"
homebrew_tap "homebrew/dupes" do
action :untap
end
Usage
We strongly recommend that you put "recipe[homebrew]" in your node's
run list, to ensure that it is available on the system and that
Homebrew itself gets installed. Putting an explicit dependency in the
metadata will cause the cookbook to be downloaded and the library
loaded, thus resulting in changing the package provider on Mac OS X,
so if you have systems you want to use the default (Mac Ports), they
would be changed to Homebrew.
The default itself ensures that Homebrew is installed and up to date.
License and Author
Author:: Graeme Mathieson (mathie@woss.name)
Copyright:: 2011, Graeme Mathieson
Licensed under the Apache License, Version 2.0 (the “License”); you may
not use this file except in compliance with the License. You may obtain
a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an “AS IS” BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Dependent cookbooks
This cookbook has no specified dependencies.