From d4ff5b6bf4f324b9b2ac8ef29289ea98b2019686 Mon Sep 17 00:00:00 2001 From: Kyle Lacy Date: Tue, 2 Oct 2018 23:17:39 -0700 Subject: [PATCH] Add changelog entry about "DefaultPermissions" change --- changelog/unreleased/pull-2017 | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 changelog/unreleased/pull-2017 diff --git a/changelog/unreleased/pull-2017 b/changelog/unreleased/pull-2017 new file mode 100644 index 000000000..b5b16365e --- /dev/null +++ b/changelog/unreleased/pull-2017 @@ -0,0 +1,12 @@ +Enhancement: mount: Enforce FUSE Unix permissions by default + +By default, `mount` will now respect the Unix permissions of the files within +snapshots (this is done through the "DefaultPermissions" FUSE option). + +To restore the old behavior, we've added the `--no-default-permissions` option. +This allows alll users that have access to the mountpoint to access all +files within the snapshots. Normal FUSE rules apply, so `--allow-root` +or `--allow-other` can be used to allow users besides the mounting user to +access the mountpoint. + +https://github.com/restic/restic/pull/2017