From b04536e55fc9ba11f18e398f2cb5ce9e90916409 Mon Sep 17 00:00:00 2001 From: Josh Curl Date: Tue, 16 Aug 2016 22:02:26 -0700 Subject: [PATCH] Fix typo writing to sshd_config --- cmd/console/console.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/console/console.go b/cmd/console/console.go index 0deb7ff8..922305b9 100644 --- a/cmd/console/console.go +++ b/cmd/console/console.go @@ -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 {