get-hosts fixes

pull/166/head^2
max furman 5 years ago
parent 5616386eed
commit 862d704f6b

@ -257,7 +257,7 @@ func (h *caHandler) Route(r Router) {
r.MethodFunc("POST", "/ssh/config", h.SSHConfig)
r.MethodFunc("POST", "/ssh/config/{type}", h.SSHConfig)
r.MethodFunc("POST", "/ssh/check-host", h.SSHCheckHost)
r.MethodFunc("POST", "/ssh/get-hosts", h.SSHGetHosts)
r.MethodFunc("GET", "/ssh/get-hosts", h.SSHGetHosts)
// For compatibility with old code:
r.MethodFunc("POST", "/re-sign", h.Renew)

@ -611,9 +611,8 @@ func (c *Client) SSHCheckHost(principal string) (*api.SSHCheckPrincipalResponse,
return &check, nil
}
// SSHGetHostPrincipals performs the POST /ssh/check-host request to the CA with the
// given principal.
func (c *Client) SSHGetHostPrincipals() (*api.SSHGetHostsResponse, error) {
// SSHGetHosts performs the GET /ssh/get-hosts request to the CA.
func (c *Client) SSHGetHosts() (*api.SSHGetHostsResponse, error) {
u := c.endpoint.ResolveReference(&url.URL{Path: "/ssh/get-hosts"})
resp, err := c.client.Get(u.String())
if err != nil {

@ -67,7 +67,7 @@ func New(c *Config) (AuthDB, error) {
tables := [][]byte{
revokedCertsTable, certsTable, usedOTTTable,
sshCertsTable, sshHostsTable, sshUsersTable,
sshCertsTable, sshHostsTable, sshHostPrincipalsTable, sshUsersTable,
}
for _, b := range tables {
if err := db.CreateTable(b); err != nil {

Loading…
Cancel
Save