From ed4d5fac4cee3b261ecfb5a8f44b198b3b021448 Mon Sep 17 00:00:00 2001 From: Alex Crawford Date: Mon, 20 Apr 2015 11:23:35 -0700 Subject: [PATCH] config: deprecate fetching SSH keys from remote endpoints --- config/user.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/user.go b/config/user.go index e89a258..eb04bc1 100644 --- a/config/user.go +++ b/config/user.go @@ -18,9 +18,9 @@ type User struct { Name string `yaml:"name"` PasswordHash string `yaml:"passwd"` SSHAuthorizedKeys []string `yaml:"ssh_authorized_keys"` - SSHImportGithubUser string `yaml:"coreos_ssh_import_github"` - SSHImportGithubUsers []string `yaml:"coreos_ssh_import_github_users"` - SSHImportURL string `yaml:"coreos_ssh_import_url"` + SSHImportGithubUser string `yaml:"coreos_ssh_import_github" deprecated:"trying to fetch from a remote endpoint introduces too many intermittent errors"` + SSHImportGithubUsers []string `yaml:"coreos_ssh_import_github_users" deprecated:"trying to fetch from a remote endpoint introduces too many intermittent errors"` + SSHImportURL string `yaml:"coreos_ssh_import_url" deprecated:"trying to fetch from a remote endpoint introduces too many intermittent errors"` GECOS string `yaml:"gecos"` Homedir string `yaml:"homedir"` NoCreateHome bool `yaml:"no_create_home"`