Hello Experts,
Teamsite/OD Ver - 16.6.1.2
OS - RHEL 7.7
I am publishing some folders/files from our UAT Teamsite to Prod Teamsite. Folders are getting created on destination but files inside are not getting published. When checked the log it says ERROR: setting access to files
When I checked further I found out the the folder's group are different in source and destination. In UAT folder has "TeamSite group" assigned but at destination(prod) it has different "OS group" assigned.
Am I missing any attribute in OD config file?
Is there any way to update the group name after publishing the folders?
My OD config
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<deploymentConfiguration>
<logRules maxBytes="32Mb" level="verbose"/>
<localNode host="localhost"/>
<replicationFarmSet>
<replicationFarm name="filelistFarm">
<nodeRef useNode="$destinationNode"/>
</replicationFarm>
</replicationFarmSet>
<definition name="TSContentDeploy">
<source>
<iwStore>
<filelist area="$area^" filePath="$filelist^">
<pathSpecification>
<path name="."/>
</pathSpecification>
</filelist>
</iwStore>
</source>
<target>
<targetTeamsite area="$targetArea" applyExtAttrs="yes"/>
<transferRules doDeletes="yes"/>
<permissionRules file="0664" directory="2775" group="$owner" user="$user"/>
<comparisonRules dateDifferent="yes" ignoreModes="yes" ignoreUser="yes" ignoreGroup="yes"/>
<replicationFarmLink>
<internal name = "filelistFarm"/>
</replicationFarmLink>
</target>
</definition>
<deployment transactional="no">
<execDeploymentTask useDefinition="TSContentDeploy">
<deployNRun>
<dnrDeployment location="target" when="after" triggerPoint="transfer" state="success">
<script cmd = "/u01/app/iw-home/TeamSite/bin/iwsubmit -u '$targetArea' 'Submit for versioning by $user' " async="no" />
</dnrDeployment>
</deployNRun>
</execDeploymentTask>
</deployment>
</deploymentConfiguration>
Thanks in Advance,
NK