Skip to content
Snippets Groups Projects
Unverified Commit d43d1754 authored by Christian Rebischke's avatar Christian Rebischke
Browse files

changed boot_wait and made it to a variable

parent f8d63a90
No related branches found
No related tags found
No related merge requests found
......@@ -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`}}",
......
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