diff options
author | Christian Hesse <mail@eworm.de> | 2013-10-01 14:52:31 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2013-10-01 14:52:31 +0200 |
commit | 94130bb0ae1a08f8eeb8080acd65fe04c9a99bdf (patch) | |
tree | 202ece926d69718cb10352d461f3ea101bbaba4d | |
parent | 761156c73d27f44d7012a6d810eec5e52bb27385 (diff) | |
download | mkinitcpio-ykfde-94130bb0ae1a08f8eeb8080acd65fe04c9a99bdf.tar.gz mkinitcpio-ykfde-94130bb0ae1a08f8eeb8080acd65fe04c9a99bdf.tar.zst |
discard errors by ykchalresp
-rwxr-xr-x | udev/ykfde | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ source /etc/ykfde.conf [ -s /crypto_keyfile.bin ] && exit 0 # write the response to keyfile -ykchalresp -${YKFDE_SLOT:-2} "$(cat /ykfde-challenge)" | tr -d '\n' > /crypto_keyfile.bin 2>/dev/null +ykchalresp -${YKFDE_SLOT:-2} "$(cat /ykfde-challenge)" 2>/dev/null | tr -d '\n' > /crypto_keyfile.bin # if the systemd unit was faster try to answer password agent for REQUEST in $(grep -l '^Message=Please give passphrase for disk' /run/systemd/ask-password/ask.*); do |