diff options
author | Harald Hoyer <harald@redhat.com> | 2013-08-13 00:39:10 +0200 |
---|---|---|
committer | Harald Hoyer <harald@redhat.com> | 2013-08-13 00:39:10 +0200 |
commit | 5e264a5d3ef54a93f97c37d98202ea5299253c83 (patch) | |
tree | 2a3c35372bd7b50b11ac98d08e815261fa0b4996 | |
parent | 4baac4b2911685a128a6fd5af18f677e668c6f8e (diff) | |
download | dracut-5e264a5d3ef54a93f97c37d98202ea5299253c83.tar.gz dracut-5e264a5d3ef54a93f97c37d98202ea5299253c83.tar.bz2 dracut-5e264a5d3ef54a93f97c37d98202ea5299253c83.zip |
add bash module
-rwxr-xr-x | modules.d/00bash/module-setup.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/modules.d/00bash/module-setup.sh b/modules.d/00bash/module-setup.sh new file mode 100755 index 00000000..e874e73d --- /dev/null +++ b/modules.d/00bash/module-setup.sh @@ -0,0 +1,20 @@ +#!/bin/bash +# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*- +# ex: ts=8 sw=4 sts=4 et filetype=sh + +check() { + [ -x /bin/bash ] +} + +depends() { + return 0 +} + +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" +} + |