diff options
author | Christian Rebischke <Chris.Rebischke@posteo.de> | 2017-09-07 00:49:08 +0200 |
---|---|---|
committer | Christian Rebischke <Chris.Rebischke@posteo.de> | 2017-09-07 00:49:08 +0200 |
commit | d43d1754b03a9fc44a1d71e40e38d09c9a713e09 (patch) | |
tree | eec2634010909176ebaa19514af8562d597617ca | |
parent | f8d63a901f4165b0b0a4ababc2b2816b258c1505 (diff) | |
download | arch-boxes32-d43d1754b03a9fc44a1d71e40e38d09c9a713e09.tar.xz |
changed boot_wait and made it to a variable
-rw-r--r-- | vagrant.json | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/vagrant.json b/vagrant.json index 70bd410..15cb181 100644 --- a/vagrant.json +++ b/vagrant.json @@ -8,12 +8,13 @@ "cpus": "2", "headless": "true", "atlas_token": "PLACEHOLDER", - "write_zeroes": "" + "write_zeroes": "", + "boot_wait": "30s" }, "builders": [ { "type": "virtualbox-iso", - "boot_wait": "10s", + "boot_wait": "{{user `boot_wait`}}", "http_directory": "http", "disk_size": "{{user `disk_size`}}", "guest_os_type": "ArchLinux_64", @@ -48,7 +49,7 @@ ] }, { "type": "qemu", - "boot_wait": "10s", + "boot_wait": "{{user `boot_wait`}}", "http_directory": "http", "disk_size": "{{user `disk_size`}}", "iso_checksum_url": "{{user `iso_checksum_url`}}", @@ -77,7 +78,7 @@ ] }, { "type": "vmware-iso", - "boot_wait": "10s", + "boot_wait": "{{user `boot_wait`}}", "http_directory": "http", "disk_size": "{{user `disk_size`}}", "iso_checksum_url": "{{user `iso_checksum_url`}}", |