aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-04-30 16:53:39 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-04-30 17:56:41 -0700
commit68d7fdae8e83847fb024bf8103dc0e71ffa29b24 (patch)
treecaf46d9b9ccf68f9c0b85eadd5ab5bc45452d542 /src
parent9f0ba8d603de49e52f7ed75cecb092ad0d0d0771 (diff)
downloadconsfigurator-68d7fdae8e83847fb024bf8103dc0e71ffa29b24.tar.gz
pass -v to kpartx(1) when deleting mappings
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src')
-rw-r--r--src/property/disk.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/property/disk.lisp b/src/property/disk.lisp
index 22a98dc..f6a5615 100644
--- a/src/property/disk.lisp
+++ b/src/property/disk.lisp
@@ -308,7 +308,7 @@ value in the case of EFI system partitions, for which case use #xEF00."))
collect (make-opened-volume partition loopdev)))))
(defmethod close-volume ((volume opened-partitioned-volume))
- (mrun "kpartx" "-d" (device-file volume)))
+ (mrun "kpartx" "-dv" (device-file volume)))
(defmethod create-volume ((volume partitioned-volume) (file pathname))
(mrun :inform "sgdisk" "--zap-all" file)