1
0
mirror of https://github.com/rancher/os.git synced 2025-07-13 22:54:03 +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
No known key found for this signature in database
GPG Key ID: 82B504B9BCCFA677

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 {