#!/bin/ksh -p
#
# ident "@(#)utpkg-utactl.ksh	1.2 09/09/17 SMI"
#
# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#

set -u

function disable {
    
    /etc/init.d/utacleanup stop
    
    return 0

}

function enable {

    return 0

}


########################################################################
# Local Variables
# They must defined here to resolve some of the parameter resolution
# problem
########################################################################
local_variables() {
    return
}


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


########################################################################
#
# Variables used in the shared script utctl-shlib
#
########################################################################
DESCR="Cleans up the authentication Manager token and associated directories in tmp"


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

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