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

test-setup « python-bareos « tests « systemtests - github.com/bareos/bareos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1c138dbbe2f6baa8844d02e9daace396da5b4036 (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
#!/bin/bash
set -e
set -o pipefail
set -u

#shellcheck source=../environment.in
. ./environment
#shellcheck source=../scripts/functions
. "${rscripts}"/functions

export TestName="$(get_test_name "$0")"

"${rscripts}"/cleanup
"${rscripts}"/setup

# Fill ${BackupDirectory} with data.
setup_data

# Create a list of paths to backup,
# containing only simple file types.
echo "${BackupDirectory}/build" >"$tmp/file-list-simple"

bin/bareos start
bin/bareos status

print_debug "$(bin/bconsole <<< "status dir")"