Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jedi4ever/puppet-homebrew
a puppet provider for the homebrew packaging system
https://github.com/jedi4ever/puppet-homebrew
Last synced: about 2 months ago
JSON representation
a puppet provider for the homebrew packaging system
- Host: GitHub
- URL: https://github.com/jedi4ever/puppet-homebrew
- Owner: jedi4ever
- Created: 2010-12-07T09:32:19.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2013-11-13T14:17:01.000Z (about 11 years ago)
- Last Synced: 2023-04-10T14:22:18.930Z (almost 2 years ago)
- Language: Ruby
- Homepage:
- Size: 147 KB
- Stars: 31
- Watchers: 2
- Forks: 12
- Open Issues: 2
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
This module implements a package provider for the mac homebrew packaging system.
It assumes the brew command is installed in `/usr/local/bin/brew`
Example usage:
```
package { "rsync":
ensure => installed,
provider => homebrew
}package { "git":
ensure => latest,
provider => homebrew
}package { "vim":
ensure => latest,
provider => homebrew,
install_options = ["--override-system-vi"]
}
```