Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bareos/bareos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'systemtests/scripts/functions')
-rw-r--r--systemtests/scripts/functions3
1 files changed, 3 insertions, 0 deletions
diff --git a/systemtests/scripts/functions b/systemtests/scripts/functions
index 413684176..051035f2b 100644
--- a/systemtests/scripts/functions
+++ b/systemtests/scripts/functions
@@ -411,16 +411,19 @@ check_duration_lt()
}
start_dir() {
+ "${BAREOS_DIRECTOR_BINARY}" -c "${BAREOS_CONFIG_DIR}" -t </dev/null
"${BAREOS_DIRECTOR_BINARY}" -c "${BAREOS_CONFIG_DIR}" -f </dev/null &
dir_pid=$!
}
start_fd() {
+ "${BAREOS_FILEDAEMON_BINARY}" -c "${BAREOS_CONFIG_DIR}" -t </dev/null
"${BAREOS_FILEDAEMON_BINARY}" -c "${BAREOS_CONFIG_DIR}" -f </dev/null &
fd_pid=$!
}
start_sd() {
+ "${BAREOS_STORAGEDAEMON_BINARY}" -c "${BAREOS_CONFIG_DIR}" -t </dev/null
"${BAREOS_STORAGEDAEMON_BINARY}" -c "${BAREOS_CONFIG_DIR}" -f </dev/null &
sd_pid=$!
}