blob: 4426e1b103c4af04c9cf29dcb93ae34bd4b296bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
. "${TEST_SCRIPTS_DIR}/unit.sh"
define_test "managed, down - once, twice"
setup "down"
ok <<EOF
vsftpd not listening on TCP port 21
WARNING: vsftpd not listening but less than 2 consecutive failures, not unhealthy yet
EOF
simple_test
required_result 1 <<EOF
vsftpd not listening on TCP port 21
ERROR: 2 consecutive failures for vsftpd, marking node unhealthy
EOF
simple_test
|