summaryrefslogtreecommitdiffstats
path: root/ctdb/tests/UNIT/eventscripts/scripts/41.httpd.sh
blob: 3fac4f0952a37312151080a34b86ddccaf1fa01b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
setup()
{
	debug "Setting up HTTPD environment: service $1, not managed by CTDB"

	if [ "$1" != "down" ]; then
		for _service_name in "apache2" "httpd"; do
			service "$_service_name" start
		done
	else
		for _service_name in "apache2" "httpd"; do
			service "$_service_name" force-stopped
		done
	fi
}