Skip to content
Snippets Groups Projects
Commit 951e9343 authored by Ladar Levison's avatar Ladar Levison
Browse files

Replace Atlas with Vagrant Cloud.

parent 2fbddbf8
No related branches found
No related tags found
No related merge requests found
......@@ -29,10 +29,10 @@ Here is an overview over all variables you can set in `vagrant.json` or
* `memory`: this specifies the size of the RAM in bytes.
* `cpus`: this specifies the number of cores for your VM.
* `headless`: this sets GUI on or off.
* `atlas_token`: here you can specify the atlas token for uploading your
box to the vagrantcloud. If you don't have any atlas token you can
ignore this variable. But then don't be suprised when the process
fails. The boxes are build, they just haven't been uploaded.
* `vagrant_cloud_token`: here you can specify the vagrant cloud token for
uploading your box to the vagrantcloud. If you don't have a vagrant cloud
token you can ignore this variable. Without a token the boxes will be
built, but the upload step step will fail.
* `write_zeroes`: this variable is empty. if you set any string in this
variable it will fill the box with zeros to reduce the size. **DO NOT
use this if you are running a SSD. It will harm your SSDs lifetime**
......
......@@ -6,7 +6,7 @@
"memory": "1024",
"cpus": "2",
"headless": "true",
"atlas_token": "PLACEHOLDER",
"vagrant_cloud_token": "PLACEHOLDER",
"write_zeroes": "",
"boot_wait": "60s"
......
......@@ -7,7 +7,7 @@
"memory": "1024",
"cpus": "2",
"headless": "true",
"atlas_token": "PLACEHOLDER",
"vagrant_cloud_token": "PLACEHOLDER",
"write_zeroes": "",
"boot_wait": "60s"
},
......@@ -148,21 +148,21 @@
{
"type": "vagrant-cloud",
"only": ["virtualbox-iso"],
"access_token": "{{user `atlas_token`}}",
"access_token": "{{user `vagrant_cloud_token`}}",
"box_tag": "archlinux/archlinux",
"version": "{{isotime \"2006.01.02\"}}"
},
{
"type": "vagrant-cloud",
"only": ["qemu"],
"access_token": "{{user `atlas_token`}}",
"access_token": "{{user `vagrant_cloud_token`}}",
"box_tag": "archlinux/archlinux",
"version": "{{isotime \"2006.01.02\"}}"
},
{
"type": "vagrant-cloud",
"only": ["vmware-iso"],
"access_token": "{{user `atlas_token`}}",
"access_token": "{{user `vagrant_cloud_token`}}",
"box_tag": "archlinux/archlinux",
"version": "{{isotime \"2006.01.02\"}}"
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment