#!/bin/sh # # OCF RA for Apache2 # # Copyright (c) 2009 Barton IT-Consulting # Copyright (c) 2004 SUSE LINUX AG, Lars Marowsky-Brée # All Rights Reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. # # This program is distributed in the hope that it would be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # # Further, this software is distributed without any warranty that it is # free of the rightful claim of any third person regarding infringement # or the like. Any license provided herein, whether implied or # otherwise, applies only to this software file. Patent licenses, if # any, provided herein do not apply to combinations of this program with # other software, or any other product whatsoever. # # You should have received a copy of the GNU General Public License # along with this program; if not, write the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. # # Initialization: . ${OCF_ROOT}/resource.d/heartbeat/.ocf-shellfuncs # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - meta_data() { cat < 1.1 This Resource Agent starts and stops the Apache2 web server. Apache2 resource agent END } # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if [ -r `dirname "$OCF_RESKEY_configfile"`/envvars ]; then # source Apache2 environment variables . `dirname "$OCF_RESKEY_configfile"`/envvars fi Apache2_usage() { echo "usage: $0 {start|stop|monitor|validate-all|meta-data}" } Apache2_start() { apache2ctl configtest if [ $? = $OCF_SUCCESS ]; then /usr/sbin/apache2ctl start if [ $? = $OCF_SUCCESS ]; then return $OCF_SUCCESS fi fi return $OCF_ERR_GENERIC } Apache2_stop() { /usr/sbin/apache2ctl stop if [ $? = $OCF_SUCCESS ]; then return $OCF_SUCCESS fi return $OCF_ERR_GENERIC } Apache2_monitor() { /usr/sbin/apache2ctl status | grep "Server Version" if [ $? = $OCF_SUCCESS ]; then return $OCF_SUCCESS fi return $OCF_NOT_RUNNING } Apache2_validate() { return $OCF_SUCCESS } case $__OCF_ACTION in meta-data) meta_data exit $OCF_SUCCESS ;; start) Apache2_start ;; stop) Apache2_stop ;; monitor) Apache2_monitor ;; validate-all) Apache2_validate ;; usage|help) Apache2_usage exit $OCF_SUCCESS ;; *) Apache2_usage exit $OCF_ERR_UNIMPLEMENTED ;; esac rc=$? ocf_log debug "${OCF_RESOURCE_INSTANCE} $__OCF_ACTION : $rc" exit $rc # -eof-