Skip to content

Instantly share code, notes, and snippets.

@oinume
Last active August 29, 2015 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oinume/2ab4beef55f9427bcbb8 to your computer and use it in GitHub Desktop.
Save oinume/2ab4beef55f9427bcbb8 to your computer and use it in GitHub Desktop.
{
"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