From a92bdc54e3d6893f737114c51170b386f8c7672e Mon Sep 17 00:00:00 2001 From: Rickard Nilsson Date: Wed, 10 May 2017 13:31:02 +0200 Subject: [PATCH] nixos/luks: Silence killall complain about non-existing cryptsetup processes --- nixos/modules/system/boot/luksroot.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/system/boot/luksroot.nix b/nixos/modules/system/boot/luksroot.nix index 6e867b67439..59ebb88582a 100644 --- a/nixos/modules/system/boot/luksroot.nix +++ b/nixos/modules/system/boot/luksroot.nix @@ -434,7 +434,7 @@ in #!$out/bin/sh -e if [ -e /.luksopen_args ]; then cryptsetup \$(cat /.luksopen_args) - killall cryptsetup + killall -q cryptsetup else echo "Passphrase is not requested now" exit 1