summaryrefslogtreecommitdiff
path: root/packaging/common
diff options
context:
space:
mode:
authorDavid Wragg <dpw@lshift.net>2009-08-14 13:42:08 +0100
committerDavid Wragg <dpw@lshift.net>2009-08-14 13:42:08 +0100
commit218f55288615945c9c3dcca7fb862b7b5e5ec2b2 (patch)
tree01060f7c7cbb2b8242fd78f4f03db57c175dde01 /packaging/common
parent345d4d0ceb837d6a69a91b26d63349fc83837152 (diff)
downloadrabbitmq-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-wrapper2
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.