#!/bin/sh # # Copyright (C) 2001-2003 Graeme Walker # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later # version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # # === # # emailrelay # # A shell-script wrapper for E-MailRelay designed for # use in the SysV-init system (/etc/init.d). # # See also: LSB, start_daemon (lsb), startproc (suse), # install_initd (lsb), insserv (suse), # /usr/share/doc/initscripts*/sysvinitfiles (redhat) # # usage: emailrelay { start [] | stop | restart | force-reload | status } # ## # RedHat comment block... # # chkconfig: 345 80 20 # description: E-MailRelay is a store-and-forward Message Transfer Agent. # pidfile: /var/run/emailrelay.pid # processname: emailrelay # ## # LSB comment block... # # The bogus 345 run-levels are a workround for a buggy RedHat chkconfig which # reads the LSB comment block (incorrectly) as an undocumented 'feature'. # ### BEGIN INIT INFO # Provides: emailrelay # Required-Start: $network # Required-Stop: $network # Default-Start: 345 3 4 5 # Default-Stop: 345 3 4 5 # Description: E-MailRelay store-and-forward Message Transfer Agent. ### END INIT INFO # choose an infrastructure style # if test -f /etc/rc.status then style="suse" . /etc/rc.status elif test -f /etc/init.d/functions then style="redhat" . /etc/init.d/functions elif test -f /lib/lsb/init-functions then style="lsb" . /lib/lsb/init-functions else style="unix" fi # configuration # switches="" sbin="/sbin" var_run="/var/run" emailrelay="__SBIN_DIR__/emailrelay" if test \! -d "${var_run}" ; then var_run="/tmp" ; fi if test \! -x "${emailrelay}" ; then emailrelay="./emailrelay" ; fi pid_file="${var_run}/emailrelay.pid" PATH="${PATH}:/sbin:/bin:/usr/bin" # functions... # #