mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 01:25:14 +01:00
20 lines
669 B
Go
20 lines
669 B
Go
// +build linux darwin freebsd
|
|
|
|
package vfsflags
|
|
|
|
import (
|
|
"github.com/spf13/pflag"
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
// add any extra platform specific flags
|
|
func platformFlags(flags *pflag.FlagSet) {
|
|
flags.IntVarP(&Opt.Umask, "umask", "", Opt.Umask, "Override the permission bits set by the filesystem.")
|
|
Opt.Umask = unix.Umask(0) // read the umask
|
|
unix.Umask(Opt.Umask) // set it back to what it was
|
|
Opt.UID = uint32(unix.Geteuid())
|
|
Opt.GID = uint32(unix.Getegid())
|
|
flags.Uint32VarP(&Opt.UID, "uid", "", Opt.UID, "Override the uid field set by the filesystem.")
|
|
flags.Uint32VarP(&Opt.GID, "gid", "", Opt.GID, "Override the gid field set by the filesystem.")
|
|
}
|