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

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

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

main()
{
        typeset rc=0

        initialize

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

	sync_file

	return 0
}

main "${@:-}"

