coyote/gp-scripts/gluster-shell-functions.sh

14 lines
229 B
Bash

check_volume_status() {
if ! sudo gluster vol status "${1}"; then
sleep 1m
check_volume_status "${1}"
fi }
start_volume() {
if ! sudo gluster vol start "${1}" force; then
sleep 1m
start_volume "${1}"
fi
}