#!/bin/sh

#     DESCRIPTION
#
# Turn On/Off services on system startup/shutdown.


#     REQUIRES
#


#     INFO
#

NAME="init3-services"

verbose()
{
    if [ -n "$GLOBAL_VERBOSE" ]; then
        echo "HOOK: $NAME: $@"
    fi
}

verbose "has started"

/sbin/chkconfig network on ||:
/sbin/chkconfig portmap on ||:
/sbin/chkconfig random on ||:
/sbin/chkconfig rawdevices on ||:
/sbin/chkconfig livecd-setlocale on ||:
/sbin/chkconfig clamd off ||:
/sbin/chkconfig dhcpd off ||:
/sbin/chkconfig sshd off ||:

verbose "finished"
