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 {
}
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")
if err != nil {
return err
......@@ -143,7 +145,9 @@ func writePasswords(passwdFile string, records [][]string) error {
return err
}
if err := csv.NewWriter(out).WriteAll(records); err != nil {
return csv.NewWriter(out).WriteAll(records)
}()
if err != nil {
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