mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-12 14:35:14 +00:00
9154e00f70
When calling the 'basename' command, the argument ${0} is enclosed in quotation marks. This is necessary if the path of the executable script (contained in that argument) has "non-standard" elements, such as space and the like. Also, in the script 'test-speed.sh' the function sh_exit() has been added for easier printing of messages at the end of execution. This patch must be backported as far as 2.4.
14 lines
365 B
Bash
Executable File
14 lines
365 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
_ARG_HAPROXY="${1:-$(realpath -L ${PWD}/../../../haproxy)}"
|
|
_ARGS="-f cmp/haproxy.cfg"
|
|
_LOG_DIR="_logs"
|
|
_LOG="${_LOG_DIR}/_log-$(basename "${0}" .sh)-$(date +%s)"
|
|
|
|
|
|
test -x "${_ARG_HAPROXY}" || exit 1
|
|
mkdir -p "${_LOG_DIR}" || exit 2
|
|
|
|
echo "executing: ${_ARG_HAPROXY} ${_ARGS} > ${_LOG}"
|
|
"${_ARG_HAPROXY}" ${_ARGS} >"${_LOG}" 2>&1
|