mirror of
https://github.com/rancher/os.git
synced 2025-06-30 16:51:47 +00:00
Merge pull request #197 from cloudnautique/fix_ssh_key_merge
Needed to add a newline.
This commit is contained in:
commit
fd0ec5bc19
@ -36,7 +36,7 @@ func NewGceCloudConfig() *GceCloudConfig {
|
||||
log.Errorf("Could not retrieve instance SSH Keys: %s", err)
|
||||
}
|
||||
|
||||
nonUserDataSSHKeysRaw := projectSSHKeys + instanceSSHKeys
|
||||
nonUserDataSSHKeysRaw := projectSSHKeys + "\n" + instanceSSHKeys
|
||||
nonUserDataSSHKeys := gceSshKeyFormatter(nonUserDataSSHKeysRaw)
|
||||
|
||||
gceCC := &GceCloudConfig{
|
||||
|
Loading…
Reference in New Issue
Block a user