Merge pull request #65 from bcwaldon/hosts-newline

fix(manage_etc_hosts): Append newline to /etc/hosts
This commit is contained in:
Brian Waldon 2014-04-07 11:09:27 -07:00
commit 8a7df360ac
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ func generateEtcHosts(option string) (out string, err error) {
return "", err
}
return fmt.Sprintf("%s %s", DefaultIpv4Address, hostname), nil
return fmt.Sprintf("%s %s\n", DefaultIpv4Address, hostname), nil
}

View File

@ -68,7 +68,7 @@ func TestEtcHostsWrittenToDisk(t *testing.T) {
t.Fatalf("Unable to read OS hostname: %v", err)
}
expect := fmt.Sprintf("%s %s", DefaultIpv4Address, hostname)
expect := fmt.Sprintf("%s %s\n", DefaultIpv4Address, hostname)
if string(contents) != expect {
t.Fatalf("File has incorrect contents")