I am deploying files list through OpenDeployNG.
While executing the iwodstart command for filelist deployment i have requirement to show the user a page with running status and finally confirmation page .
presently i am working with the logic
$od_running = `/opt/iw-home/OpenDeployNG/bin/iwodserverstatus`;
if ($od_running =~ /OpenDeploy server is alive/)
{
print "
The deployment process is underway.";
my $variables = "target=$targetWorkarea&status=$running_flag&userId=$userId&hostname=$hostname&vpath=$vpath";
# first time through refresh
print "<meta http-equiv="\"refresh\"" content="\"12;" url="
http://$hostname/iw-bin/DeployAcknowledge.ipl?$variables\"" />";
#same page is called in loop
}
else
{
print "
OpenDeploy is not running
";
}
but the refresh functionality and real time status is not coming.