#!/usr/bin/bash
# vim: cindent:shiftwidth=4:tabstop=4:smarttab:textwidth=100

# only for debugging, troubleshooting, or development
# not for production use
function STATE_DEGRADED {
	local services_list=$1

	readarray -d ';' -t services <<< "$services_list"

	for service in ${services[@]}; do
		systemctl start $service
	done	
}
