diff options
author | Christian Rebischke <Chris.Rebischke@posteo.de> | 2017-07-17 18:33:26 +0200 |
---|---|---|
committer | Christian Rebischke <Chris.Rebischke@posteo.de> | 2017-07-17 18:33:26 +0200 |
commit | f9206846329cc1f6b89f510698267e5dec1ef2ca (patch) | |
tree | c4b95055b301aa89802b451c9245ec0f8fcbe9be | |
parent | b3d8734930979b63e319a222440f0c721387f675 (diff) | |
download | arch-boxes32-f9206846329cc1f6b89f510698267e5dec1ef2ca.tar.xz |
added vagrant-cloud post-processor
I also enabled headless for future headless builds on a buildserver
-rw-r--r-- | vagrant.json | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/vagrant.json b/vagrant.json index d8429b9..a52f144 100644 --- a/vagrant.json +++ b/vagrant.json @@ -6,7 +6,8 @@ "disk_size": "20480", "memory": "1024", "cpus": "2", - "headless": "false" + "headless": "true", + "atlas_token": "PLACEHOLDER" }, "builders": [ { @@ -133,6 +134,27 @@ "type": "vagrant", "keep_input_artifact": true, "output": "Arch-Linux-x86_64-{{ .Provider }}-{{isotime \"2006-01-02\"}}.box" + }, + { + "type": "vagrant-cloud", + "only": ["virtualbox-iso"], + "access_token": "{{user `atlas_token`}}", + "box_tag": "archlinux/archlinux", + "version": "{{isotime \"2006.01.02\"}}" + }, + { + "type": "vagrant-cloud", + "only": ["qemu"], + "access_token": "{{user `atlas_token`}}", + "box_tag": "archlinux/archlinux", + "version": "{{isotime \"2006.01.02\"}}" + }, + { + "type": "vagrant-cloud", + "only": ["vmware-iso"], + "access_token": "{{user `atlas_token`}}", + "box_tag": "archlinux/archlinux", + "version": "{{isotime \"2006.01.02\"}}" } ] } |