add bash module
authorHarald Hoyer <harald@redhat.com>
Mon, 12 Aug 2013 22:39:10 +0000 (00:39 +0200)
committerHarald Hoyer <harald@redhat.com>
Mon, 12 Aug 2013 22:39:10 +0000 (00:39 +0200)
modules.d/00bash/module-setup.sh [new file with mode: 0755]

diff --git a/modules.d/00bash/module-setup.sh b/modules.d/00bash/module-setup.sh
new file mode 100755 (executable)
index 0000000..e874e73
--- /dev/null
@@ -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"
+}
+