#!/bin/sh

if [ -d /etc/rc3.d ]; then
   # First execute the Kill scripts
   for f in /etc/rc3.d/K*
   do
      if [ -x $f ]; then
         $f stop
      fi
   done

   # Now, execute the Start scripts
   for f in /etc/rc3.d/S*
   do
      if [ -x $f ]; then
         $f start
      fi
   done
fi

