Skip to content

Commit

Permalink
Merge pull request #69 from Vincent43/patch-1
Browse files Browse the repository at this point in the history
yubikey-luks-suspend: do lazy umounts
  • Loading branch information
cornelinux authored Jun 28, 2021
2 parents 79677de + a4dbe88 commit 7cedca9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yubikey-luks-suspend
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ mount_barrier() {
umount_bind() {
local p
for p in ${BIND_PATHS}; do
mountpoint -q "${INITRAMFS_DIR}${p}" && umount "${INITRAMFS_DIR}${p}"
mountpoint -q "${INITRAMFS_DIR}${p}" && umount -l "${INITRAMFS_DIR}${p}"
done
}

Expand Down

0 comments on commit 7cedca9

Please sign in to comment.