]> ruderich.org/simon Gitweb - safcm/safcm.git/commitdiff
sync: tests: use strict perm for os.WriteFile() in CreateFile()
authorSimon Ruderich <simon@ruderich.org>
Sun, 9 May 2021 10:15:58 +0000 (12:15 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sun, 9 May 2021 13:15:43 +0000 (15:15 +0200)
This parameter is modified by the umask. The proper permissions are set
by os.Chmod() afterwards. Don't confuse the reader by using a value
which is not relevant.

cmd/safcm-remote/sync/filetest/filetest.go

index f0c518c78ede440dbd012aa8815a90ba57f41cdd..370ca10edfa4744aa41318397cf7af56782c51ec 100644 (file)
@@ -97,7 +97,7 @@ func CurrentUserAndGroup() (string, int, string, int) {
 }
 
 func CreateFile(path string, data string, mode fs.FileMode) {
-       err := os.WriteFile(path, []byte(data), 0644)
+       err := os.WriteFile(path, []byte(data), 0600)
        if err != nil {
                panic(err)
        }