aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndre Russ <andre.russ@sap.com>2021-08-24 21:38:14 +0000
committerJóhann B. Guðmundsson <johannbg@gmail.com>2021-08-25 23:58:12 +0000
commita93fbc4ae00d8c6ecda67319a6425f7966609bbe (patch)
treebdad1d0bc3922a44a41dd4db5856afbf1654defd
parent655c65e6ced00e7a80c41e96c5f6fe108da07839 (diff)
downloaddracut-a93fbc4ae00d8c6ecda67319a6425f7966609bbe.tar.gz
fix(crypt-gpg): tr needs to be installed
-rwxr-xr-xmodules.d/91crypt-gpg/module-setup.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules.d/91crypt-gpg/module-setup.sh b/modules.d/91crypt-gpg/module-setup.sh
index 634a5149..501869a2 100755
--- a/modules.d/91crypt-gpg/module-setup.sh
+++ b/modules.d/91crypt-gpg/module-setup.sh
@@ -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