1
0
mirror of https://github.com/rancher/os.git synced 2025-09-17 15:40:47 +00:00

Merge pull request #1159 from joshwget/fix-typo

Fix typo writing to sshd_config
This commit is contained in:
Darren Shepherd
2016-08-17 09:06:56 -07:00
committed by GitHub

View File

@@ -179,7 +179,7 @@ func modifySshdConfig() error {
}
}
return ioutil.WriteFile("/etc/ssh/ssh_config", []byte(sshdConfigString), 0644)
return ioutil.WriteFile("/etc/ssh/sshd_config", []byte(sshdConfigString), 0644)
}
func writeOsRelease() error {