#! /usr/bin/ksh
#
#pragma	ident	"@(#)rac_udlm_start.ksh	1.5	03/01/19 SMI"
#
# Copyright 2002-2003 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
############################################################
#
# SUNW.rac_udlm Start method
#
############################################################

INCLUDE="."
INCLUDE_PATH=/usr/cluster/lib/ucmm

${INCLUDE} ${INCLUDE_PATH}/rac_lib
${INCLUDE} ${MYDIR}/rac_udlm_lib

main()
{
        initialize

        read_arguments "${@:-}" || exit $?

        #
        # Update configuration file
        #
	sync_file

        return 0
}

main "${@:-}"

