#!/bin/sh
#
# $Id: service_stop_SuSEfirewall2,v 1.2 2007/05/14 14:56:33 gleissner Exp $
#
#
# Project     :  SCPM (System Configuration Profile Management)
# Module      :  SCPM Utilities
# File        :  service_SuSEfirewall2_stop
# Description :  Stops SuSEfirewall2 service
# Author      :  Joachim Gleissner <jg@suse.de>
#
# Copyright 2007 SUSE Linux Products GmbH
#
# Released under the terms of the GNU General Public License
# (see file COPYRIGHT in project root directory).
#

test -z "$1" && { echo "no init script given" >&2 ; exit 1 ; }

test -x /sbin/SuSEfirewall2  || { echo "cannot execute /sbin/SuSEfirewall2" >&2 ; exit 2 ; }
exec /sbin/SuSEfirewall2 stop

exit 0
    
