Skip to content

Commit 18c6ed1

Browse files
juaddeshibumi
authored andcommitted
Fix #94 Build timeout
1 parent 2458ea3 commit 18c6ed1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

local.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"boot_command": [
4646
"<enter><wait10><wait10><wait10><wait10><wait10><enter><enter>",
4747
"curl -O 'http://{{.HTTPIP}}:{{.HTTPPort}}/install{,-common,-chroot}.sh'<enter><wait>",
48-
"bash install.sh <(cat install-{chroot,common}.sh) && systemctl reboot<enter>"
48+
"bash install.sh < <(cat install-{chroot,common}.sh) && systemctl reboot<enter>"
4949
]
5050
}, {
5151
"type": "qemu",
@@ -74,7 +74,7 @@
7474
"boot_command": [
7575
"<enter><wait10><wait10><wait10><wait10><wait10><enter><enter>",
7676
"curl -O 'http://{{.HTTPIP}}:{{.HTTPPort}}/install{,-common,-chroot}.sh'<enter><wait>",
77-
"bash install.sh <(cat install-{chroot,common}.sh) && systemctl reboot<enter>"
77+
"bash install.sh < <(cat install-{chroot,common}.sh) && systemctl reboot<enter>"
7878
]
7979
}, {
8080
"type": "vmware-iso",
@@ -95,7 +95,7 @@
9595
"boot_command": [
9696
"<enter><wait10><wait10><wait10><wait10><wait10><enter><enter>",
9797
"curl -O 'http://{{.HTTPIP}}:{{.HTTPPort}}/install{,-common,-chroot}.sh'<enter><wait>",
98-
"bash install.sh <(cat install-{chroot,common}.sh) && systemctl reboot<enter>"
98+
"bash install.sh < <(cat install-{chroot,common}.sh) && systemctl reboot<enter>"
9999
]
100100
}
101101

vagrant.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"boot_command": [
4646
"<enter><wait10><wait10><wait10><wait10><wait10><enter><enter>",
4747
"curl -O 'http://{{.HTTPIP}}:{{.HTTPPort}}/install{,-common,-chroot}.sh'<enter><wait>",
48-
"bash install.sh <(cat install-{chroot,common}.sh) && systemctl reboot<enter>"
48+
"bash install.sh < <(cat install-{chroot,common}.sh) && systemctl reboot<enter>"
4949
]
5050
}, {
5151
"type": "qemu",
@@ -74,7 +74,7 @@
7474
"boot_command": [
7575
"<enter><wait10><wait10><wait10><wait10><wait10><enter><enter>",
7676
"curl -O 'http://{{.HTTPIP}}:{{.HTTPPort}}/install{,-common,-chroot}.sh'<enter><wait>",
77-
"bash install.sh <(cat install-{chroot,common}.sh) && systemctl reboot<enter>"
77+
"bash install.sh < <(cat install-{chroot,common}.sh) && systemctl reboot<enter>"
7878
]
7979
}, {
8080
"type": "vmware-iso",
@@ -95,7 +95,7 @@
9595
"boot_command": [
9696
"<enter><wait10><wait10><wait10><wait10><wait10><enter><enter>",
9797
"curl -O 'http://{{.HTTPIP}}:{{.HTTPPort}}/install{,-common,-chroot}.sh'<enter><wait>",
98-
"bash install.sh <(cat install-{chroot,common}.sh) && systemctl reboot<enter>"
98+
"bash install.sh < <(cat install-{chroot,common}.sh) && systemctl reboot<enter>"
9999
]
100100
}
101101

0 commit comments

Comments
 (0)