#!/bin/bash
# Copyright (C) 2004 Networks Associates Technology Inc. All rights reserved.
#

if [ -f $NETAWSS/.profile.vars ]; then 
 . $NETAWSS/.profile.vars 
else 
 . /var/NAIENV/.profile.vars 
fi 
PATH=$wsPATH:$PATH
RET=0

start()
{
    # generate ldap configuration
    xsltproc ${WSMGMT}/ldapservers.xsl /config/wsxmlconf/network.xml > /config/wsxmlconf/ldap.txt
    return 0
}

stop()
{
    return 0
}


# See how we were called.
case "$1" in
  start)
        start
	;;
  stop)
        stop
	;;
  reload)
	$0 stop
	$0 start
	;;
  restart)
	$0 stop
	$0 start
	;;
  *)
	echo "Usage: $0 {reload|start|stop|restart}"
	exit 1
esac

exit $RET
