blob: 6bd323bd5e76e766b11ba37573b2e6f33599f8db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
$NetBSD: patch-deps_rabbit_scripts_rabbitmq-env,v 1.3 2022/10/15 18:26:27 triaxx Exp $
Remove cumbersome symlink handling, we know where stuff is.
--- deps/rabbit/scripts/rabbitmq-env.orig 2019-07-23 15:31:05.072674789 +0000
+++ deps/rabbit/scripts/rabbitmq-env
@@ -11,29 +11,7 @@ if [ "$RABBITMQ_ENV_LOADED" = 1 ]; then
fi
if [ -z "$RABBITMQ_SCRIPTS_DIR" ]; then
- # We set +e here since since our test for "readlink -f" below needs to
- # be able to fail.
- set +e
- # Determine where this script is really located (if this script is
- # invoked from another script, this is the location of the caller)
- SCRIPT_PATH="$0"
- while [ -h "$SCRIPT_PATH" ] ; do
- # Determine if readlink -f is supported at all. TODO clean this up.
- FULL_PATH=`readlink -f $SCRIPT_PATH 2>/dev/null`
- if [ "$?" != "0" ]; then
- REL_PATH=`readlink $SCRIPT_PATH`
- if expr "$REL_PATH" : '/.*' > /dev/null; then
- SCRIPT_PATH="$REL_PATH"
- else
- SCRIPT_PATH="`dirname "$SCRIPT_PATH"`/$REL_PATH"
- fi
- else
- SCRIPT_PATH=$FULL_PATH
- fi
- done
- set -e
-
- RABBITMQ_SCRIPTS_DIR=`dirname $SCRIPT_PATH`
+ RABBITMQ_SCRIPTS_DIR="@RABBITMQ_HOME@/sbin"
fi
_rmq_env_now()
|