Hi,
I want to copy all the contents of a Workarea from Soure to Target hosts using remoteDiff. I am able to copy Newer files and older files using different comparision rules.
My target has few identical files already copied long back. now I want to overwrite all the identical files as well so that when I submit all of them, the new Ownership and Groups are applied on them as well.
<definition name="main" >
<source>
<iwStore name="" recordExtAttr="no" >
<remoteDiff area="$srcarea^" name="" >
<pathSpecification>
<path name="." />
<filters >
<excludePattern regex=".*\.cfg$" />
<excludePattern regex=".*\.tpl$" />
<excludePattern regex=".*\.ipl$" />
</filters>
<targetRules area="" >
<filters >
<excludePattern regex=".*\.cfg$" />
<excludePattern regex=".*\.tpl$" />
<excludePattern regex=".*\.ipl$" />
</filters>
</targetRules>
</pathSpecification>
</remoteDiff>
</iwStore>
</source>
<target useReplicationFarm="TargetDeployment" >
<comparisonRules dateDifferent="no" revert="yes" ignoreModes="yes" ignoreUser="yes" ignoreGroup="yes"/>
<transferRules doDeletes="yes" />
<targetTeamsite applyExtAttrs="yes" area="$trgarea^" >
<pathSpecification >
<path name="." />
</pathSpecification>
</targetTeamsite>
<replicationFarmLink >
<internal name="TargetDeployment" />
</replicationFarmLink>
</target>
</definition>
Please advise urgently