Hello everyone,
I have an OD error message ,like this :
" Locating OpenDeploy service.
Got OpenDeploy service
>>>>>-- Start deployment receiver_check/receiver_check_1043533_testServr_1.
iwodstart running in default synchronous mode.
Need to wait for deployment to complete.
***ERROR - Starting deployment.
Reason from server: DEPLOY_CONFIG_FILE
Details : FileList /usr2/Interwoven/OpenDeployNG/conf/rcr_chk/dummyfilelist.txt not found. "
Now , I need to filter the above message and get only few part of it. and they are
***ERROR - Starting deployment.
Reason from server: DEPLOY_CONFIG_FILE
Details : FileList /usr2/Interwoven/OpenDeployNG/conf/rcr_chk/dummyfilelist.txt not found.
I tried it by doing the following way :
----------------------------------------------------
my
@errMsg =qw(Locating OpenDeploy service.
Got OpenDeploy service
>>>>>-- Start deployment receiver_check/receiver_check_1043533_testNC_1.
iwodstart running in default synchronous mode.
Need to wait for deployment to complete.
***ERROR - Starting deployment.
Reason from server: DEPLOY_CONFIG_FILE
Details : FileList /usr2/Interwoven/OpenDeployNG/conf/receiver_check/dummyfilelist.txt not found.);
foreach $list (
@errMsg) {
$string.= $list;
}
$string =~m/ERROR(.*?)found/;
$string = $1;
print $string;
but could not able to get in with the exact fomatting , can any one share ideas on it.