File: t05-hooks.sh

package info (click to toggle)
backup-manager 0.7.14-1%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,520 kB
  • sloc: sh: 4,041; perl: 1,183; makefile: 213
file content (24 lines) | stat: -rw-r--r-- 520 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#! /usr/bin/env bash

set -e

# Each test script should include testlib.sh
source testlib.sh
# When the test is ready, set this to false for nice outputs.
# if you want to see what happens, use those flags
verbose="true"
warnings="true"

# The conffile part of the test, see confs/* for details.
source confs/base.conf
export BM_PRE_BACKUP_COMMAND="/bin/true"
export BM_POST_BACKUP_COMMAND="echo true"
source $locallib/sanitize.sh

# The test actions
bm_init_env
bm_init_today
exec_pre_command
exec_post_command

exit 0