aboutsummaryrefslogtreecommitdiff
path: root/src/property/installer.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-04-30 17:14:48 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-04-30 17:56:41 -0700
commit5a5671ff99e8fb7d4e929cef2590542b23952e20 (patch)
treecc288fa11b341ec26b8d882414c091a5ae15f865 /src/property/installer.lisp
parent0ad4421ff9ace9fb9953ee5ec0c2052ce37f36ba (diff)
downloadconsfigurator-5a5671ff99e8fb7d4e929cef2590542b23952e20.tar.gz
pass -x to rsync(1) when updating volumes from chroot
Otherwise it will try to copy in /dev, /proc etc. Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/property/installer.lisp')
-rw-r--r--src/property/installer.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/property/installer.lisp b/src/property/installer.lisp
index c4877d3..11d7062 100644
--- a/src/property/installer.lisp
+++ b/src/property/installer.lisp
@@ -22,7 +22,7 @@
(:desc #?"Updated ${target} from ${chroot}")
(:apply
(assert-euid-root)
- (run "rsync" "-PSav" "--delete"
+ (run "rsync" "-PSavx" "--delete"
(loop for volume
in (mapcan (curry #'subvolumes-of-type 'mounted-filesystem)
(get-connattr :opened-volumes))