Browse Source

Implement debug mode and production mode (Copied from

snf-milter.redhat in snf-redhat distribution).

Changed version from 3.0.6  to 3.0.7.


git-svn-id: https://svn.microneil.com/svn/PKG-SNF-CS-NIX/trunk@42 233e721a-07f6-49eb-a7da-05e0e16828fc
master
adeniz 15 years ago
parent
commit
6b1611054c

+ 8
- 0
SNF_CS_Developer_Package/ChangeLog View File

2009-07-02 Alban Deniz <adeniz@skidmark.localdomain>

* Scripts/snf-server.redhat: Implement debug mode and production
mode (Copied from snf-milter.redhat in snf-redhat distribution).

2009-06-30 Alban Deniz <adeniz@skidmark.localdomain> 2009-06-30 Alban Deniz <adeniz@skidmark.localdomain>


* Docs/DebugMode_readme.txt: Updated to be consistent with
debug/production mode capability.

* Scripts/snf-server.openbsd: Implement debug mode and production * Scripts/snf-server.openbsd: Implement debug mode and production
mode (Copied from snf-milter.openbsd in snf-milter distribution). mode (Copied from snf-milter.openbsd in snf-milter distribution).



+ 127
- 33
SNF_CS_Developer_Package/Scripts/snf-server.redhat View File

#!/bin/bash #!/bin/bash
# #
# SNFServer This shell script takes care of starting and stopping
# the MicroNeil SNFServer daemon for RedHat systems.
# snf-server Starts and stops the SNFServer daemon (RedHat).
# #
# Author-- Alban Deniz # Author-- Alban Deniz
# #
# See www.armresearch.com for details. # See www.armresearch.com for details.
# processname: SNFServer # processname: SNFServer


# Directory to run in.
runDir=PREFIX/share/PACKAGE_NAME

# Define mode files.
debugModeFile=$runDir/debug_mode
productionModeFile=$runDir/production_mode

# Set debug mode flag.
if [ -f $debugModeFile ]
then
debugMode=true
fi

# Source function library. # Source function library.
. /etc/rc.d/init.d/functions . /etc/rc.d/init.d/functions


# Source networking configuration. # Source networking configuration.
. /etc/sysconfig/network . /etc/sysconfig/network


# Location of programs.
# Debug output file.
debugOutputFile=/var/log/PACKAGE_NAME/debug.log

# Location of installation.
installedDir="PREFIX" installedDir="PREFIX"


# Location of programs. # Location of programs.
configFile="CONFFILE" configFile="CONFFILE"


# Name of daemon. # Name of daemon.
prog="SNFServer"
debugProg="SNFDebugServer"
productionProg="SNFServer"


# Name of client. # Name of client.
clientProg="SNFClient" clientProg="SNFClient"
userName="snfilter" userName="snfilter"


# Name of lockfile. # Name of lockfile.
lockFile="/var/lock/subsys/$prog"
lockFile="/var/lock/subsys/PACKAGE_NAME"


# Start command.
snfStartCmd="$dir/$prog $configFile > /dev/null 2>&1 &"
#
# Function to create the mode file.
#
createModeFile()
{
fileName=$1

# Remove any existing mode files.
rm -f $productionModeFile $debugModeFile $fileName
(
echo $"PACKAGE_NAME mode file"
echo
echo $"This file specifies whether PACKAGE_NAME is configured to run in"
echo $"production mode or debug mode. If the name of this file is"
echo $"'production_mode', then PACKAGE_NAME is configured to run in"
echo $"production mode. If the name is 'debug_mode', then PACKAGE_NAME is"
echo $"configured to run in debug mode."
echo
echo $"To run in debug mode:"
echo
echo $" 1) Run 'PACKAGE_NAME debug_mode'"
echo
echo $" 2) Run 'PACKAGE_NAME restart' (if PACKAGE_NAME is already running),"
echo $" or 'PACKAGE_NAME start' (to start PACKAGE_NAME)"
echo
echo $"To run in production mode:"
echo
echo $" 1) Run 'PACKAGE_NAME production_mode'"
echo
echo $" 2) Run 'PACKAGE_NAME restart' (if PACKAGE_NAME is already running),"
echo $" or 'PACKAGE_NAME start' (to start PACKAGE_NAME)"
echo
echo $"By default, PACKAGE_NAME is configured to run in production mode."
) > $fileName

}


start(){ start(){
SNFPID=$(pidof -s $dir/$prog)
echo -n $"Starting $prog: "
if [ -n "$SNFPID" ] ; then
echo -n $"$prog is already running"
failure
echo
return 1
echo -n $"Starting $productionProg: "
for prog in $productionProg $debugProg
do
SNFPID=$(pidof -s $dir/$prog)
if [ -n "$SNFPID" ] ; then
echo -n $"$productionProg is already running"
failure
echo
return 1
fi
done

# Start.
if [ $debugMode ]
then

# Enable core dumps and start with strace and output redirected.
(ulimit -c unlimited; \
su $userName -s /bin/sh -c \
"echo Starting $dir/$debugProg on $(date) >> $debugOutputFile"; \
cd PREFIX/share/PACKAGE_NAME; \
su $userName -c \
"strace -r -tt -v $dir/$debugProg $configFile >> $debugOutputFile 2>&1 &" \
-s /bin/sh)

else else
su $userName -c "$snfStartCmd" -s /bin/sh > /dev/null 2>&1
RETVAL=$?
if [ $RETVAL -eq 0 ]; then
$dir/$clientProg -status.second > /dev/null 2>&1
RETVAL=$?
fi
(cd PREFIX/share/PACKAGE_NAME; \
su $userName -c "$dir/$productionProg $configFile > /dev/null 2>&1 &" \
-s /bin/sh > /dev/null 2>&1)
fi

RETVAL=$?
if [ $RETVAL -eq 0 ]; then
$dir/$clientProg -status.second > /dev/null 2>&1
RETVAL=$?
fi fi

if [ $RETVAL -eq 0 ]; then if [ $RETVAL -eq 0 ]; then
touch $lockFile touch $lockFile
success success
} }


stop(){ stop(){
echo -n $"Stopping $prog: "
SNFPID=$(pidof -s $dir/$prog)
if [ -n "$SNFPID" ]; then
echo -n $"Stopping $productionProg: "
DEBUG_SNFPID=$(pidof -s $dir/$debugProg)
PRODUCTION_SNFPID=$(pidof -s $dir/$productionProg)
if [ -n "$DEBUG_SNFPID" ] || [ -n "$PRODUCTION_SNFPID" ]; then
$dir/$clientProg -shutdown > /dev/null 2>&1 $dir/$clientProg -shutdown > /dev/null 2>&1
sleep 10 sleep 10
SNFPID=$(pidof -s $dir/$prog)
if [ -n "$SNFPID" ]; then
kill $SNFPID
RETVAL=$?
else
RETVAL=0
fi

# Check that the programs are no longer running.
RETVAL=0
for prog in $debugProg $productionProg
do

SNFPID=$(pidof -s $dir/$prog)
if [ -n "$SNFPID" ]; then
kill $SNFPID
RETVAL=$(($RETVAL+$?))
fi
done
else else
echo -n $"$prog is not running"
echo -n $"$productionProg is not running"
RETVAL=1 RETVAL=1
failure failure
echo echo
stop stop
;; ;;
status) status)
status $prog
status $productionProg
status $debugProg
;; ;;
restart) restart)
restart restart
;; ;;
debug_mode)
#
# Remove any mode flags, and create the debug_mode file.
#
echo $"Switching to debug mode"
createModeFile $debugModeFile
;;
production_mode)
#
# Remove any mode flags, and create the debug_mode file.
#
echo $"Switching to production mode"
createModeFile $productionModeFile
;;
*) *)
echo $"Usage: $0 {start|stop|status|restart}"
echo $"Usage: $0 {start|stop|status|restart|production_mode|debug_mode}"
exit 1 exit 1
esac esac



+ 1
- 1
SNF_CS_Developer_Package/configure.ac View File

dnl dnl
AC_PREREQ(2.52) AC_PREREQ(2.52)


AC_INIT(snf-server, 3.0.6)
AC_INIT(snf-server, 3.0.7)
AC_CONFIG_SRCDIR(SNFMulti/snfCFGmgr.cpp) AC_CONFIG_SRCDIR(SNFMulti/snfCFGmgr.cpp)
AC_CONFIG_AUX_DIR(config) AC_CONFIG_AUX_DIR(config)
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)

Loading…
Cancel
Save