fix(crypt-gpg): tr needs to be installed

master
Andre Russ 2021-08-24 21:38:14 +00:00 committed by Jóhann B. Guðmundsson
parent 655c65e6ce
commit a93fbc4ae0
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
# GPG support is optional
# called by dracut
check() {
require_binaries gpg || return 1
require_binaries gpg tr || return 1

if sc_requested; then
if ! sc_supported; then
@ -23,7 +23,7 @@ depends() {

# called by dracut
install() {
inst_multiple gpg
inst_multiple gpg tr
inst "$moddir/crypt-gpg-lib.sh" "/lib/dracut-crypt-gpg-lib.sh"

if sc_requested; then