# This module copies the live filesystem to the target partition. # It's used when the live system is not a squashfs image. # The source directory is the root of the live system. source: "/" # The destination is the root of the target partition. destination: "" # Exclude directories that are created by the kernel or are not meant to be copied. exclude: - /proc - /sys - /dev - /run - /tmp - /mnt - /media - /etc/calamares # Exclude our installer config from the final system # Additional rsync options for a reliable copy. rsyncOptions: [ "-a", "-X", "-A", "--numeric-ids", "--info=progress2" ]