Commit 522e0887 authored by Knic Knic's avatar Knic Knic

do not rename inuse files

parent 95760fff
...@@ -133,6 +133,8 @@ func (p *Passwd) Write(passwdFile string) error { ...@@ -133,6 +133,8 @@ func (p *Passwd) Write(passwdFile string) error {
} }
func writePasswords(passwdFile string, records [][]string) error { func writePasswords(passwdFile string, records [][]string) error {
err := func() error {
// ensure to close tmp file before rename for filesystems like NTFS
out, err := os.Create(passwdFile + ".tmp") out, err := os.Create(passwdFile + ".tmp")
if err != nil { if err != nil {
return err return err
...@@ -143,7 +145,9 @@ func writePasswords(passwdFile string, records [][]string) error { ...@@ -143,7 +145,9 @@ func writePasswords(passwdFile string, records [][]string) error {
return err return err
} }
if err := csv.NewWriter(out).WriteAll(records); err != nil { return csv.NewWriter(out).WriteAll(records)
}()
if err != nil {
return err return err
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment