]> TLD Linux GIT Repositories - packages/dracut.git/blob - bash.patch
- updated to 059
[packages/dracut.git] / bash.patch
1 --- dracut-055/modules.d/00bash/module-setup.sh~        2021-05-27 14:34:19.000000000 +0200
2 +++ dracut-055/modules.d/00bash/module-setup.sh 2021-10-30 23:03:00.931687353 +0200
3 @@ -9,7 +9,7 @@
4      require_binaries bash || return 1
5  
6      # Return 255 to only include the module, if another module requires it.
7 -    return 255
8 +    return 0
9  
10  }
11  
12 @@ -27,6 +27,6 @@
13      inst /bin/bash
14  
15      # Prefer bash as default shell if no other shell is preferred.
16 -    [[ -L $initdir/bin/sh ]] || ln -sf bash "${initdir}/bin/sh"
17 +    ln -sf bash "${initdir}/bin/sh"
18  
19  }