#!/bin/ksh -p
#
# ident "@(#)utsyscfgctl.ksh	1.1	11/01/18 Oracle"
#
# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
#

set -u
########################################################################
#
# loads drivers for Linux
#
########################################################################

PATH=/usr/bin:/bin:/usr/sbin:/sbin
export PATH

########################################################################
#
# Operation entry points, one for each keyword.  This is where the
# specific work for this feature happens.
#
########################################################################


#
# disable()
#
disable() {
	/etc/init.d/utsyscfg stop
}

#
# enable()
#
enable() {
	/etc/init.d/utsyscfg start
}


#########################################
# LOCAL VARIABLES
# They must defined here to resolve the some of parameter resolution
# problem
#########################################
local_variables() {
	:
}


#########################################
#
# Configurable parameter
#
#########################################
# NONE

#########################################
#
# variables used in the shared script utctl-shlib
#
#########################################

DESCR="loads Linux drivers"

########################################################################
#
# Execution starts here
#

PROGPATH=`dirname $0`
. $PROGPATH/utctl-shlib
