mirror of
https://github.com/restic/restic.git
synced 2025-08-23 04:07:25 +00:00
Make mountpoint readable by owner only
This commit is contained in:
@@ -61,7 +61,7 @@ func (cmd CmdMount) Execute(args []string) error {
|
||||
if _, err := os.Stat(mountpoint); err != nil {
|
||||
if os.IsNotExist(err) {
|
||||
cmd.global.Verbosef("Mountpoint %s doesn't exist, creating it\n", mountpoint)
|
||||
err = os.Mkdir(mountpoint, os.ModeDir|0755)
|
||||
err = os.Mkdir(mountpoint, os.ModeDir|0700)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
Reference in New Issue
Block a user