X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=cmd%2Fsafcm%2Fconfig%2Ffiles.go;h=32b211cd494b731bc357d6fc813128135f2203da;hb=9506effbe395b9be30ba2b34702c51478e8043e4;hp=08b2dbf28d28ab7758f313b8f29931a3e72eb463;hpb=f2f2bc47e8729548f3c10117f7f008b547c4afc5;p=safcm%2Fsafcm.git diff --git a/cmd/safcm/config/files.go b/cmd/safcm/config/files.go index 08b2dbf..32b211c 100644 --- a/cmd/safcm/config/files.go +++ b/cmd/safcm/config/files.go @@ -1,6 +1,6 @@ // Config: load files/ directory tree -// Copyright (C) 2021 Simon Ruderich +// Copyright (C) 2021-2023 Simon Ruderich // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -21,7 +21,9 @@ import ( "fmt" "io/fs" "os" + slashpath "path" "path/filepath" + "runtime" "ruderich.org/simon/safcm" ) @@ -30,6 +32,7 @@ func LoadFiles(group string) (map[string]*safcm.File, error) { basePath := filepath.Join(group, "files") const errMsg = ` + The actual permissions and user/group of files and directories are not used (except for +x on files). 0644/0755 and current remote user/group is used per default. Apply different file permissions via permissions.yaml. To prevent @@ -37,6 +40,9 @@ confusion files must be manually chmodded 0644/0755 and directories 0755 or via "safcm fixperms". ` + // No permission checks on windows which doesn't track them. + windows := runtime.GOOS == "windows" + files := make(map[string]*safcm.File) err := filepath.WalkDir(basePath, func(path string, d fs.DirEntry, err error) error { @@ -57,6 +63,11 @@ via "safcm fixperms". // permissions they could assume that these permissions are // respected. This is not the case. if typ == 0 /* regular file */ { + if windows { + perm = 0644 + // 0755 must be set via permissions.yaml if + // windows is used + } if perm != 0644 && perm != 0755 { return fmt.Errorf( "%q: invalid permissions %#o%s", @@ -67,6 +78,9 @@ via "safcm fixperms". return err } } else if typ == fs.ModeDir { + if windows { + perm = 0755 + } if perm != 0755 { return fmt.Errorf( "%q: invalid permissions %#o%s", @@ -78,16 +92,18 @@ via "safcm fixperms". return err } data = []byte(x) + perm |= 0777 // see cmd/safcm-remote/sync/files.go } else { return fmt.Errorf("%q: file type not supported", path) } - // Convert to absolute path as used on the target host + // Convert to absolute and slash-separated path as used on the + // target host x, err := filepath.Rel(basePath, path) if err != nil { return err } - x = filepath.Join("/", x) + x = slashpath.Join("/", filepath.ToSlash(x)) files[x] = &safcm.File{ Path: x,