Beta Shell
v2.0 ยท web2.us.cloudlogin.co
[FM]
[CMD]
[PHP]
[DB]
[INFO]
[SEC]
File Manager
~
/
usr
/
lib
/
dracut
/
modules.d
/
00bash
Upload
3 items
Name
Size
Perms
Modified
Actions
[ .. / .. ]
module-setup.sh
361 B
-rwxr-xr-x
2018-10-08 13:38:33
Edit
Del
Editing: module-setup.sh
(361 B)
Path: /usr/lib/dracut/modules.d/00bash/module-setup.sh
Back
#!/bin/bash # called by dracut check() { require_binaries /bin/bash } # called by dracut depends() { return 0 } # called by dracut install() { # If another shell is already installed, do not use bash [[ -x $initdir/bin/sh ]] && return # Prefer bash as /bin/sh if it is available. inst /bin/bash && ln -sf bash "${initdir}/bin/sh" }