From 8ffd57b3fe8fb56d77dde340af147255ce73ad1c Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Mon, 18 Oct 2004 22:54:51 +0000 Subject: Added sample scripts. --- scripts/proxsmtpd.sh | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 scripts/proxsmtpd.sh (limited to 'scripts/proxsmtpd.sh') diff --git a/scripts/proxsmtpd.sh b/scripts/proxsmtpd.sh new file mode 100644 index 0000000..d439336 --- /dev/null +++ b/scripts/proxsmtpd.sh @@ -0,0 +1,33 @@ +#!/bin/sh + +########################################################################### +# CONFIGURATION + +# Most configuration options are found in the proxsmtpd.conf file. +# For more info see: +# man proxsmtpd.conf + +# The prefix proxsmtpd was installed to +prefix=/usr/local/ + +# The location for pid file +piddir=/var/run/ + +########################################################################### +# SCRIPT + +case $1 in +start) + mkdir -p $piddir + chown $user $piddir + $prefix/sbin/proxsmtpd -p $piddir/proxsmtpd.pid + echo -n "proxsmtpd " + ;; +stop) + [ -f $piddir/proxsmtpd.pid ] && kill `cat $piddir/proxsmtpd.pid` + echo -n "proxsmtpd " + ;; +*) + echo "usage: proxsmptd.sh {start|stop}" >&2 + ;; +esac -- cgit v1.2.3