1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-28 17:47:29 +03:00
samba-mirror/ctdb/tests/scripts/script_install_paths.sh
Martin Schwenke 25f05ced2f ctdb-tests: Add new variable CTDB_SCRIPTS_HELPER_BINDIR
This will always find a binary helper, as opposed to a script helper,
which currently lives under tools/ in the source tree.

Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
2018-05-17 04:04:31 +02:00

28 lines
951 B
Bash

# Hey Emacs, this is a -*- shell-script -*- !!! :-)
# $ctdb_dir is set in common.sh
if [ -n "$ctdb_dir" ] ; then
# Running in-tree
CTDB_SCRIPTS_BASE="${ctdb_dir}/config"
CTDB_SCRIPTS_INIT_SCRIPT="${ctdb_dir}/config/ctdb.init"
CTDB_SCRIPTS_SBIN_DIR="${ctdb_dir}/config"
CTDB_SCRIPTS_TOOLS_BIN_DIR="${ctdb_dir}/tools"
CTDB_SCRIPTS_TOOLS_HELPER_DIR="${ctdb_dir}/tools"
CTDB_SCRIPTS_HELPER_BINDIR="${ctdb_dir}/bin"
else
# Installed
CTDB_SCRIPTS_BASE="/usr/local/etc/ctdb"
CTDB_SCRIPTS_INIT_SCRIPT="" # No ideas here... this is a packaging choice
CTDB_SCRIPTS_SBIN_DIR="/usr/local/sbin"
CTDB_SCRIPTS_TOOLS_BIN_DIR="/usr/local/bin"
CTDB_SCRIPTS_TOOLS_HELPER_DIR="/usr/local/libexec/ctdb"
CTDB_SCRIPTS_HELPER_BINDIR="/usr/local/libexec/ctdb"
fi
export CTDB_SCRIPTS_BASE \
CTDB_SCRIPTS_BIN_DIR \
CTDB_SCRIPTS_INIT_SCRIPT \
CTDB_SCRIPTS_SBIN_DIR \
CTDB_SCRIPTS_TOOLS_HELPER_DIR \
CTDB_SCRIPTS_HELPER_BINDIR