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 | 5c9cd96b49d77160d7be3a2a9f0810fa3d91d88d (patch) | |
tree | 01060f7c7cbb2b8242fd78f4f03db57c175dde01 /packaging | |
parent | 4a945668fd70c4400bf4b3733e8201ee1470464a (diff) | |
download | rabbitmq-server-5c9cd96b49d77160d7be3a2a9f0810fa3d91d88d.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')
-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 296a77d1..fbb300ac 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. |