-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Expand file tree
/
Copy pathrsync.conf
More file actions
22 lines (18 loc) · 617 Bytes
/
rsync.conf
File metadata and controls
22 lines (18 loc) · 617 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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" ]