# IBM_PROLOG_BEGIN_TAG # This is an automatically generated prolog. # # # # Licensed Materials - Property of IBM # # (C) COPYRIGHT International Business Machines Corp. 2004,2019 # All Rights Reserved # # US Government Users Restricted Rights - Use, duplication or # disclosure restricted by GSA ADP Schedule Contract with IBM Corp. # # IBM_PROLOG_END_TAG package LPRM_cli_include; # sccsid = "@(#)63 1.3 src/rsct/rm/LPRM/cli/pm/LPRM_cli_include.pm.perl, LPRM, rsct_rady, rady2035a 11/12/15 16:38:18" ###################################################################### # # # Package: LPRM_cli_include.pm # # # # Description: # # This package contains constants that are common for the # # LPRM CLI commands. # # # #--------------------------------------------------------------------# # Inputs: # # none. # # # # Outputs: # # none. # # # # External References: # # none. # # # # Tab Settings: # # 4 and tabs should be expanded to spaces before saving this file. # # in vi: (:set ts=4 and :%!expand -4) # # # # Change Activity: # # 041222 JAC 112254: Initial design & write. # # 071028 JAC 146726: set delimiters for calling -api commands. # ###################################################################### use Exporter (); @ISA = qw(Exporter); @EXPORT_OK = qw( $TRUE $FALSE $DELIMITERI $DELIMITERO $MSGCAT $MSGSET $CTDIR $CTBINDIR $LSMSG $RMC_CLI_USER_ERROR $RMC_CLI_RSRC_NOT_FOUND $LOCAL_SCOPE $PEER_DOMAIN_SCOPE $RMC_SCOPE_ERROR $RMC_LOCAL_SCOPE $RMC_LOCAL2_SCOPE $RMC_DM_SR_LOCAL_SCOPE ); #use lib "/opt/rsct/pm"; use locale; #--------------------------------------------------------------------# # The constants for ConfigRM CLI # #--------------------------------------------------------------------# $MSGCAT = "lprmcli.cat"; # msg catalog for this cmd $MSGSET = "lprmcli"; # common message set $CTDIR = "/opt/rsct"; # RSCT root directory $CTBINDIR = "$CTDIR/bin"; # Cluster Bin directory path $LSMSG = "$CTBINDIR/ctdspmsg"; # list / display message rtn $ENV{'MSGMAPPATH'} = "$CTDIR/msgmaps"; # msg maps used by $LSMSG $FALSE = 0; $TRUE = 1; $RMC_CLI_USER_ERROR = 5; # RMC CLI user error $RMC_CLI_RSRC_NOT_FOUND = 6; # RMC CLI resource not found $LOCAL_SCOPE = 1; # local scope $PEER_DOMAIN_SCOPE = 2; # peer domain scope $RMC_SCOPE_ERROR = 43; # scope not supported $RMC_LOCAL_SCOPE = 1; # RMC local scope $RMC_LOCAL2_SCOPE = 0; # RMC local scope $RMC_DM_SR_LOCAL_SCOPE = 4; # RMC RM/SR scope $DELIMITERI = "tvitvitvi"; # input delimiter to use $DELIMITERO = "tvotvotvo"; # output delimiter to use #--------------------------------------------------------------------# # End File. # #--------------------------------------------------------------------#