forked from TrueCloudLab/certificates
Replace /ssh/get-hosts to /ssh/hosts
This commit is contained in:
parent
d8b3e05a3f
commit
5d7829b198
2 changed files with 3 additions and 2 deletions
|
@ -297,12 +297,13 @@ func (h *caHandler) Route(r Router) {
|
||||||
r.MethodFunc("POST", "/ssh/config", h.SSHConfig)
|
r.MethodFunc("POST", "/ssh/config", h.SSHConfig)
|
||||||
r.MethodFunc("POST", "/ssh/config/{type}", h.SSHConfig)
|
r.MethodFunc("POST", "/ssh/config/{type}", h.SSHConfig)
|
||||||
r.MethodFunc("POST", "/ssh/check-host", h.SSHCheckHost)
|
r.MethodFunc("POST", "/ssh/check-host", h.SSHCheckHost)
|
||||||
r.MethodFunc("GET", "/ssh/get-hosts", h.SSHGetHosts)
|
r.MethodFunc("GET", "/ssh/hosts", h.SSHGetHosts)
|
||||||
r.MethodFunc("POST", "/ssh/bastion", h.SSHBastion)
|
r.MethodFunc("POST", "/ssh/bastion", h.SSHBastion)
|
||||||
|
|
||||||
// For compatibility with old code:
|
// For compatibility with old code:
|
||||||
r.MethodFunc("POST", "/re-sign", h.Renew)
|
r.MethodFunc("POST", "/re-sign", h.Renew)
|
||||||
r.MethodFunc("POST", "/sign-ssh", h.SSHSign)
|
r.MethodFunc("POST", "/sign-ssh", h.SSHSign)
|
||||||
|
r.MethodFunc("GET", "/ssh/get-hosts", h.SSHGetHosts)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Version is an HTTP handler that returns the version of the server.
|
// Version is an HTTP handler that returns the version of the server.
|
||||||
|
|
|
@ -929,7 +929,7 @@ retry:
|
||||||
// SSHGetHosts performs the GET /ssh/get-hosts request to the CA.
|
// SSHGetHosts performs the GET /ssh/get-hosts request to the CA.
|
||||||
func (c *Client) SSHGetHosts() (*api.SSHGetHostsResponse, error) {
|
func (c *Client) SSHGetHosts() (*api.SSHGetHostsResponse, error) {
|
||||||
var retried bool
|
var retried bool
|
||||||
u := c.endpoint.ResolveReference(&url.URL{Path: "/ssh/get-hosts"})
|
u := c.endpoint.ResolveReference(&url.URL{Path: "/ssh/hosts"})
|
||||||
retry:
|
retry:
|
||||||
resp, err := c.client.Get(u.String())
|
resp, err := c.client.Get(u.String())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in a new issue