Ubuntu Pastebin

Paste from menno at Wed, 13 Apr 2016 23:51:26 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
type SSHHostKeys struct {
	RSA string
	DSA string
}

This:

func (st *State) GetSSHHostKeys(entity GlobalEntity) (SSHHostKeys, error)
func (st *State) SetSSHHostKeys(entity GlobalEntity, keys SSHHostKeys) error

or this:

func (m *Machine) GetSSHHostKeys() (SSHHostKeys, error)
func (m *Machine) SetSSHHostKeys(keys SSHHostKeys) error
Download as text