diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2002-07-19 23:46:57 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2002-07-19 23:46:57 +0000 |
commit | 6f5c1c6119c003841ee5c6b42b37249879aefcf6 (patch) | |
tree | 990f7a355b797a9a68103cdf9a2edc4af069497a /usr.sbin | |
parent | f8541189ae639a2598d4b421e86fb8dec700bd86 (diff) |
don't try to find a "suitable" bourne shell for subcommands, just use our
/bin/sh, it is fine.
Sam Smith <S@mSmith.net> reported a breakage in case bash in installed, and
dhartmei@ analyzed, as far as I can see from the old mail sam forwarded me.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/httpd/src/modules/ssl/libssl.module | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/usr.sbin/httpd/src/modules/ssl/libssl.module b/usr.sbin/httpd/src/modules/ssl/libssl.module index 5034c9a497b..699d780a59a 100644 --- a/usr.sbin/httpd/src/modules/ssl/libssl.module +++ b/usr.sbin/httpd/src/modules/ssl/libssl.module @@ -85,14 +85,7 @@ ConfigStart # # find a reasonable Bourne Shell for sub-shell calls # - SH=sh - if [ -f /bin/bash ]; then - SH=/bin/bash - elif [ -f /bin/sh5 ]; then - SH=/bin/sh5 - elif [ -f /bin/sh ]; then - SH=/bin/sh - fi + SH=/bin/sh # # determine mod_ssl author version |