1
0
mirror of https://github.com/rancher/os.git synced 2025-09-01 14:48:55 +00:00

Fix typo writing to sshd_config

This commit is contained in:
Josh Curl
2016-08-16 22:02:26 -07:00
parent a81be13f82
commit b04536e55f

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 {