From 2cbde58c30dae7ab2b35e3adf36f52792c201455 Mon Sep 17 00:00:00 2001 From: Darren Shepherd Date: Thu, 28 Jan 2016 08:27:17 -0700 Subject: [PATCH] Revert "Remove unused SshConfig type" This reverts commit 246791d32517bebf29857b14ed40dc441cefac42. --- config/types.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/types.go b/config/types.go index a5461127..60827747 100644 --- a/config/types.go +++ b/config/types.go @@ -81,6 +81,7 @@ type RancherConfig struct { Modules []string `yaml:"modules,omitempty"` Network netconf.NetworkConfig `yaml:"network,omitempty"` Repositories Repositories `yaml:"repositories,omitempty"` + Ssh SshConfig `yaml:"ssh,omitempty"` State StateConfig `yaml:"state,omitempty"` SystemDocker DockerConfig `yaml:"system_docker,omitempty"` Upgrade UpgradeConfig `yaml:"upgrade,omitempty"` @@ -107,6 +108,10 @@ type DockerConfig struct { Exec bool `yaml:"exec,omitempty"` } +type SshConfig struct { + Keys map[string]string `yaml:"keys,omitempty"` +} + type StateConfig struct { Directory string `yaml:"directory,omitempty"` FsType string `yaml:"fstype,omitempty"`