]> git.ipfire.org Git - thirdparty/dracut-ng.git/commitdiff
fix: module-setup.sh missing stty
authorfarfalleflickan <6597735+farfalleflickan@users.noreply.github.com>
Wed, 8 May 2024 11:02:28 +0000 (11:02 +0000)
committerLaszlo Gombos <laszlo.gombos@gmail.com>
Wed, 8 May 2024 12:45:20 +0000 (08:45 -0400)
modules.d/91crypt-gpg/module-setup.sh

index 501869a26e96a511acfa05fcee9612c1f29034ab..523cfcedc9ab5cc96d49fac85fc5d4e7c054f726 100755 (executable)
@@ -3,7 +3,7 @@
 # GPG support is optional
 # called by dracut
 check() {
-    require_binaries gpg tr || return 1
+    require_binaries gpg tr stty || return 1
 
     if sc_requested; then
         if ! sc_supported; then
@@ -23,7 +23,7 @@ depends() {
 
 # called by dracut
 install() {
-    inst_multiple gpg tr
+    inst_multiple gpg tr stty
     inst "$moddir/crypt-gpg-lib.sh" "/lib/dracut-crypt-gpg-lib.sh"
 
     if sc_requested; then