vagrant-itamae is a vagrant plugin for Itamae
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
vagrant plugin install vagrant-itamae
vagrant-itamae does not support itamae plugins. If you want to use itamae plugins with vagrant-itamae then try to use vagrant-multiplug
- Fork it ( https://github.com/chiastolite/vagrant-itamae/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request