diff options
author | Nuno Santos <nsantos@apache.org> | 2008-04-17 14:31:01 +0000 |
---|---|---|
committer | Nuno Santos <nsantos@apache.org> | 2008-04-17 14:31:01 +0000 |
commit | a443219ee00b09c7d1f883f874636cdfc4b2b5da (patch) | |
tree | 7a3fc07e05b9a8dc2d29be59dc4063421c6f45f7 /cpp | |
parent | 399cad066cb6a258b455b60e8e4619f6c4f927c3 (diff) | |
download | qpid-python-a443219ee00b09c7d1f883f874636cdfc4b2b5da.tar.gz |
add full path to qpidd in init script, as it fails in some environments with just the command name
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@649126 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rwxr-xr-x | cpp/etc/qpidd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/etc/qpidd b/cpp/etc/qpidd index d9076191d6..aae65853cb 100755 --- a/cpp/etc/qpidd +++ b/cpp/etc/qpidd @@ -32,7 +32,7 @@ RETVAL=0 start() { echo -n $"Starting Qpid AMQP daemon: " - daemon --pidfile $pidfile --check $prog --user qpidd $prog --daemon $QPIDD_OPTIONS + daemon --pidfile $pidfile --check $prog --user qpidd /usr/sbin/$prog --daemon $QPIDD_OPTIONS RETVAL=$? echo [ $RETVAL = 0 ] && touch $lockfile |