Fix linting errors and remove useless code

This commit is contained in:
Alan Christopher Thomas 2019-09-10 22:56:19 -06:00
parent 15f2935db1
commit 21baa69473

View file

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