Skip to content

Commit

Permalink
Fix issue with script being overwritten with the tag
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
  • Loading branch information
alexellis committed Nov 13, 2019
1 parent 59ba2a6 commit 330f7c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/civo.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ func provisionCivoInstance(host provision.BasicHost, key string) (CreatedInstanc
values.Add("template_id", host.OS)
values.Add("initial_user", "civo")
values.Add("script", host.UserData)
values.Add("script", "inlets")
values.Add("tags", "inlets")

req, err := http.NewRequest(http.MethodPost, apiURL, strings.NewReader(values.Encode()))
if err != nil {
Expand Down

0 comments on commit 330f7c9

Please sign in to comment.