diff options
| author | David Wragg <dpw@lshift.net> | 2009-08-14 13:42:08 +0100 |
|---|---|---|
| committer | David Wragg <dpw@lshift.net> | 2009-08-14 13:42:08 +0100 |
| commit | 218f55288615945c9c3dcca7fb862b7b5e5ec2b2 (patch) | |
| tree | 01060f7c7cbb2b8242fd78f4f03db57c175dde01 /packaging/common | |
| parent | 345d4d0ceb837d6a69a91b26d63349fc83837152 (diff) | |
| download | rabbitmq-server-git-218f55288615945c9c3dcca7fb862b7b5e5ec2b2.tar.gz | |
Use /bin/sh for rabbitmq-script-wrapper, not /bin/bash
There's nothing in it that is an obvious dependency on bash, and some
testing with dash as /bin/sh doesn't reveal any problems. Neither
does checkbashisms.
Diffstat (limited to 'packaging/common')
| -rw-r--r-- | packaging/common/rabbitmq-script-wrapper | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/common/rabbitmq-script-wrapper b/packaging/common/rabbitmq-script-wrapper index 296a77d19c..fbb300ace6 100644 --- a/packaging/common/rabbitmq-script-wrapper +++ b/packaging/common/rabbitmq-script-wrapper @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # Escape spaces and quotes, because shell is revolting. for arg in "$@" ; do # Escape quotes in parameters, so that they're passed through cleanly. |
