Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chiastolite/vagrant-itamae
https://github.com/chiastolite/vagrant-itamae
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/chiastolite/vagrant-itamae
- Owner: chiastolite
- License: mit
- Created: 2014-08-06T16:39:13.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-06-05T13:46:05.000Z (5 months ago)
- Last Synced: 2024-06-28T06:37:01.932Z (5 months ago)
- Language: Ruby
- Size: 14.6 KB
- Stars: 59
- Watchers: 4
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# vagrant-itamae
vagrant-itamae is a vagrant plugin for [Itamae](https://github.com/ryotarai/itamae)
## Example
```ruby
Vagrant.configure('2') do |config|
config.vm.box = "ubuntu/trusty64"config.vm.provision :itamae do |config|
# execute command with sudo privilege(true or false)
config.sudo = true# recipes(String or Array)
config.recipes = ['./recipe.rb']config.json = './node.json'
end
end
```## Installation
```ruby
vagrant plugin install vagrant-itamae
```## about Itamae plugin
vagrant-itamae does not support [itamae plugins](https://rubygems.org/search?utf8=%E2%9C%93&query=itamae-plugin).
If you want to use itamae plugins with vagrant-itamae then try to use [vagrant-multiplug](https://github.com/r7kamura/vagrant-multiplug)## Contributing
1. Fork it ( https://github.com/chiastolite/vagrant-itamae/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request