1
0
mirror of https://github.com/rancher/os.git synced 2025-07-19 09:26:27 +00:00

Revert "Remove unused SshConfig type"

This reverts commit 246791d325.
This commit is contained in:
Darren Shepherd 2016-01-28 08:27:17 -07:00
parent 618cd741d8
commit 2cbde58c30

View File

@ -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"`