#!/bin/bash test_info() { cat <' with a valid variable name (possibly obtained via 'ctdb listvars'. 3. Verify that the command displays the correct value of the variable (corroborate with the value shown by 'ctdb listvars'. Expected results: * 'ctdb getvar' shows the correct value of the variable. EOF } . "${TEST_SCRIPTS_DIR}/integration.bash" ctdb_test_init "$@" set -e cluster_is_healthy try_command_on_node -v 0 "$CTDB listvars" echo "Veryifying all variable values using \"ctdb getvar\"..." echo "$out" | while read var x val ; do try_command_on_node 0 "$CTDB getvar $var" val2="${out#*= }" if [ "$val" != "$val2" ] ; then echo "MISMATCH on $var: $val != $val2" exit 1 fi done