#!/bin/sh
########################################################################
# Begin stunnel
#
# Description : Stunnel Boot Script
#
# Authors     : Bruce Dubbs - bdubbs@linuxfromscratch.org
#
# Version     : BLFS 7.0
#
########################################################################

### BEGIN INIT INFO
# Provides:            stunnel
# Required-Start:      $network
# Should-Start:        networkmanager wicd
# Required-Stop:       $network
# Should-Stop:         networkmanager wicd
# Default-Start:       2 3 4 5
# Default-Stop:        0 1 6
# Short-Description:   Provides an SSL encryption wrapper.
# Description:         Provides an SSL encryption wrapper between remote
#                      clients and local (inetd-startable) or remote servers.
#                      The concept is that having non-SSL aware daemons running
#                      on your system you can easily set them up to communicate
#                      with clients over secure SSL channels.
# X-LFS-Provided-By:   BLFS
### END INIT INFO

. /lib/lsb/init-functions

case "$1" in
   start)
      log_info_msg "Starting the Stunnel Daemon..."
      start_daemon /usr/bin/stunnel
      evaluate_retval
      ;;

   stop)
      log_info_msg "Stopping the Stunnel Daemon..."
      killproc /usr/bin/stunnel
      evaluate_retval
      ;;

   restart)
      $0 stop
      sleep 1
      $0 start
      ;;

   status)
      statusproc /usr/bin/stunnel
      ;;

   *)
      echo "Usage: $0 {start|stop|restart|status}"
      exit 1
      ;;
esac

# End /etc/init.d/stunnel
