aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/package.lisp1
-rw-r--r--src/property/disk.lisp3
2 files changed, 3 insertions, 1 deletions
diff --git a/src/package.lisp b/src/package.lisp
index 8b98198..f2fca72 100644
--- a/src/package.lisp
+++ b/src/package.lisp
@@ -409,6 +409,7 @@
#:luks-container
#:opened-luks-container
#:crypttab-options
+ #:crypttab-keyfile
#:linux-swap
#:with-these-open-volumes
diff --git a/src/property/disk.lisp b/src/property/disk.lisp
index c3eee36..e4a368f 100644
--- a/src/property/disk.lisp
+++ b/src/property/disk.lisp
@@ -513,7 +513,8 @@ Note that GRUB2 older than 2.06 cannot open the default LUKS2 format, so
specify \"luks1\" if this is needed.")
(crypttab-options
:type list :initform '("luks" "discard" "initramfs")
- :initarg :crypttab-options :accessor crypttab-options)))
+ :initarg :crypttab-options :accessor crypttab-options)
+ (crypttab-keyfile :initarg :crypttab-keyfile :accessor crypttab-keyfile)))
(defclass-opened-volume opened-luks-container (luks-container))