#!/bin/sh usage() { echo "Usage: $0 start" exit 1 } ################################################################################ # E X E C U T I O N B E G I N S H E R E # ################################################################################ command="$1" case "$command" in start) /etc/init.d/S35shorewall restart ;; *) usage ;; esac