HiI have TS6.5,OD6.0.0,Windows 2003.Please see the attached file. I want to know if the deplyoment from source to target of Definition QA fails then will the same fail for definition Prod ,as transactional=yes?
Since the entire deployment is transactional - then if either QA or PROD encounters a failure condition - they both will be considered as failing and will both be rolled back.
My requirement is :Run the attched deployment script from an ipl with the following dummy code :if($condition){deploy to QA}else {deploy to Prod}How can I achive this from the attached deployment script?
<deployment transactional="yes"> <execDeploymentTask useDefinition="$def^"/></deployment>
... -k def="QA" ...
... -k def="Prod" ...
Condition is altered a little ,in the below fashion
Your original question was how to run one of two possible deployments with a single deployment configuration file. Your current post appears to have followed the advice given - and then ignored it and went back to your original problem.Why are you doing a literal replacement instead of parameter substitution?
Hey already implemented that. And I completely went by you .For the last condition ,instead of literal replacement, I ran the script two times ,ie., once for each set of WAS and IIS servers.Thanks!!