Skip to content
This repository has been archived by the owner on Oct 16, 2022. It is now read-only.

Read-only btrfs snapshots #685

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Core/Main.vala
Original file line number Diff line number Diff line change
Expand Up @@ -1500,7 +1500,7 @@ public class Main : GLib.Object{
dst_path = dst_path.replace("/@home/@home", "/@home");
}

string cmd = "btrfs subvolume snapshot '%s' '%s' \n".printf(src_path, dst_path);
string cmd = "btrfs subvolume snapshot -r '%s' '%s' \n".printf(src_path, dst_path);

if (LOG_COMMANDS) { log_debug(cmd); }

Expand Down