#!/usr/bin/perl
# IBM_PROLOG_BEGIN_TAG 
# This is an automatically generated prolog. 
#  
#  
#  
# Licensed Materials - Property of IBM 
#  
# (C) COPYRIGHT International Business Machines Corp. 2000,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 
######################################################################
#                                                                    #
# Module: HostRMconfig                                               #
#                                                                    #
# Purpose:                                                           #
#   Resource manager IBM.HostRM configuration script. This script is #
#   invoked by RMC after the resource manager has been installed.    #
#                                                                    #
######################################################################
# sccsid = "@(#)07   1.4   src/rsct/rm/HostRM/HostRMconfig.perl, HostRM, rsct_rady, rady2035a 11/12/15 16:38:04"

#--------------------------------------------------------------------#
# Variables                                                          #
#--------------------------------------------------------------------#

$CMDDIR = "/opt/rsct/install/bin";
$ProgName = "ldpdef";
$PdefFileName = "IBM.HostRM.pdef";

#--------------------------------------------------------------------#
# Mainline                                                           #
#--------------------------------------------------------------------#

system "$CMDDIR/$ProgName -c $PdefFileName";
exit(0);

