armbian-build/extensions/calamares-installer/config/etc/calamares/modules/rsync.conf
Igor Pecovnik e95f37d4c6
Add Calamares installer extension
Add new Calamares-based installer extension with configuration for
automated Armbian installations, including partition, unpackfs,
displaymanager, and shellprocess modules.

Signed-off-by: Igor Pecovnik <igor@armbian.com>
2026-02-23 19:46:02 +01:00

23 lines
617 B
Plaintext

# 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" ]