此方法用来检验 Confdir_list 特性所指向的目录是否存在。当创建数据服务以及群集管理员更新数据服务特性时,RGM 都将调用此方法。每当故障监视器将数据服务故障转移到新节点时,Monitor_check 方法都将调用此方法。
/* * Copyright (c) 1998-2004 by Sun Microsystems, Inc. * 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); } |