tofu: Automatically create file in KnownHosts.Load

This commit is contained in:
Adnan Maolood 2021-03-06 15:11:30 -05:00
parent be3d09d7f4
commit 5677440876
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ func (k *KnownHosts) WriteTo(w io.Writer) (int64, error) {
// Load loads the known hosts entries from the provided path.
func (k *KnownHosts) Load(path string) error {
f, err := os.Open(path)
f, err := os.OpenFile(path, os.O_CREATE|os.O_RDONLY, 0644)
if err != nil {
return err
}