From b30fab7b2ad107d5f7ffb2bfd3bc6375c9c14527 Mon Sep 17 00:00:00 2001 From: Tommaso Chiti Date: Mon, 1 Feb 2021 12:45:21 +0100 Subject: [PATCH] Fix snapper inside chroot. --- easy-arch.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/easy-arch.sh b/easy-arch.sh index 8f90739..6bb1af3 100644 --- a/easy-arch.sh +++ b/easy-arch.sh @@ -157,7 +157,11 @@ arch-chroot /mnt /bin/bash -e <<"EOF" # Snapper configuration umount /.snapshots rm -r /.snapshots - snapper -c root create-config / + snapper --no-dbus -c root create-config / + btrfs subvolume delete /.snapshots + mkdir /.snapshots + mount -a + chmod 750 /.snapshots # Installing GRUB. echo "Installing GRUB on /boot."