#!/bin/bash
####################################################################
#
#      File: S20tlv
#      Name: Shankar Subramaniam
#
#      Description:
#       Initialization/Cleanup of klm_tlv
#	Actual location on disk: /isan/etc/rc.d/rc.isan-start/S20tlv
#
#
# Copyright (c) 1985-2004, 2015 by cisco Systems, Inc.
# All rights reserved.
#
#
# $Id: S16tlv,v 1.2 2004/05/11 20:04:33 sugan Exp $
# $Source: /auto/vwsvua/kirsten/sanos6/VegasSW__isan__utils__libtlv__kspace/S16tlv,v $
# $Author: sugan $
#
#####################################################################

. /etc/init.d/mod_ins/module-load-functions

case $1 in
    start)
        action "" insmod -f /lib/modules/klm_tlv.o  > /dev/null
    ;;
    stop)
        action "" rmmod klm_tlv
    ;;
esac

