#!/bin/sh
########################################################################
# Begin setclock
#
# Description : Setting hardware clock Script needed by eudev
#
# Authors     : Thierry Nuttens
#               Derived from Linux From Scratch
#
# Version     : NuTyX 8.1
#
########################################################################

. /lib/lsb/init-functions

case ${1} in
   start)
      do_start_clock
      ;;

   stop)
      do_stop_clock
      ;;

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

esac

exit 0

