Last active
August 29, 2015 14:23
-
-
Save oinume/2ab4beef55f9427bcbb8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"builders":[ | |
{ | |
"type":"virtualbox-ovf", | |
"source_path":"/Users/kazuhiro/.vagrant.d/boxes/oinume-VAGRANTSLASH-ubuntu-14.04-jp/1.0.1/virtualbox/box.ovf", | |
"ssh_username":"vagrant", | |
"ssh_password":"vagrant", | |
"ssh_wait_timeout":"30s", | |
"shutdown_command":"echo 'vagrant' | sudo -S shutdown -P now" | |
} | |
], | |
"provisioners":[ | |
{ | |
"type":"shell", | |
"inline":[ | |
"sudo apt-get -y update", | |
"sudo apt-get install -y python-pip python-dev", | |
"sudo pip install ansible" | |
] | |
} | |
], | |
"post-processors":[ | |
{ | |
"type":"vagrant", | |
"override":{ | |
"virtualbox":{ | |
"output":"ubuntu-14-04-x64-jp-ansible-virtualbox.box" | |
} | |
} | |
} | |
] | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment