Fix linting errors and remove useless code

pull/101/head
Alan Christopher Thomas 5 years ago
parent 15f2935db1
commit 21baa69473

@ -26,8 +26,8 @@ import (
)
type config struct {
Name string `json:"name"`
DNS string `json:"dns"`
Name string `json:"name"`
DNS string `json:"dns"`
Address string `json:"address"`
}
type onboardingPayload struct {
@ -225,18 +225,18 @@ intermediate private key.`,
// TODO actually initialize the CA config and start listening
// TODO get the root cert fingerprint to post back to the onboarding guide
payload, err := json.Marshal(onboardingPayload{Fingerprint: "foobarbatbaz"})
req, err := http.NewRequest("POST", "http://localhost:3002/onboarding/" + token, bytes.NewBuffer(payload))
req.Header.Set("Content-Type", "application/json")
if err != nil {
log.Fatal(err)
}
client := &http.Client{}
resp, err := client.Do(req)
req, err := http.NewRequest("POST", "http://localhost:3002/onboarding/"+token, bytes.NewBuffer(payload))
req.Header.Set("Content-Type", "application/json")
if err != nil {
log.Fatal(err)
}
body, err = ioutil.ReadAll(resp.Body)
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
log.Fatal(err)
}
@ -245,9 +245,8 @@ intermediate private key.`,
fmt.Printf("Initialized!\n")
fmt.Printf("Step CA has been started. Please return to the onboarding guide in your browser to continue.\n")
for {
time.Sleep(1 * time.Second);
time.Sleep(1 * time.Second)
}
return nil
},
},
{

Loading…
Cancel
Save