fix: remove --force flag — caused setup.sh to hang
This commit is contained in:
parent
d3db8ce4c0
commit
7875dbca13
1 changed files with 1 additions and 1 deletions
|
|
@ -57,7 +57,7 @@ func InstallNode(node state.Node, apiToken, apiHost, labels string) error {
|
||||||
// 4. Run setup
|
// 4. Run setup
|
||||||
fmt.Printf("[%s] Running setup...\n", node.Name)
|
fmt.Printf("[%s] Running setup...\n", node.Name)
|
||||||
cmd := exec.Command("bash", filepath.Join(archiveDir, "setup.sh"),
|
cmd := exec.Command("bash", filepath.Join(archiveDir, "setup.sh"),
|
||||||
"--batch", "--token", apiToken, "--cloud", cloudFromHost(apiHost), "--force",
|
"--batch", "--token", apiToken, "--cloud", cloudFromHost(apiHost),
|
||||||
)
|
)
|
||||||
cmd.Dir = archiveDir
|
cmd.Dir = archiveDir
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue