Go to main content

Oracle® Solaris Cluster Data Services Developer's Guide

Exit Print View

Updated: September 2015
 
 

xfnts_validate Method Code Listing

This method verifies the existence of the directory that is pointed to by the Confdir_list property. The RGM calls this method when the data service is created and when data service properties are updated by the cluster administrator. The Monitor_check method calls this method whenever the fault monitor fails over the data service to a new node.

Example 23  xfnts_validate.c
/*
* Copyright (c) 1998, 2012, Oracle and/or its affiliates.
* All rights reserved.
*
* xfnts_validate.c - validate method for HA-XFS
*/

#pragma ident “@(#)xfnts_validate.c 1.9 01/01/18 SMI”

#include <rgm/libdsdev.h>
#include “xfnts.h”

/*
* Check to make sure that the properties have been set properly.
*/

int
main(int argc, char *argv[])
{
scds_handle_t   scds_handle;
int   rc;

/* Process arguments passed by RGM and initialize syslog */
if (scds_initialize(&scds_handle, argc, argv) != SCHA_ERR_NOERR)
{
scds_syslog(LOG_ERR, “Failed to initialize the handle.”);
return (1);
}
rc = svc_validate(scds_handle);

/* Free up all the memory allocated by scds_initialize */
scds_close(&scds_handle);

/* Return the result of validate method */
return (rc);

}