I understand that we cannot combine both inclusion and exclusion filters in the same deployment configuration. So, is there a work around solutions???Basically, I want to deploy some contents to the targetServer A, and the remaining contents to targetServer B. For example: I have the below structure:/folderA/folderB/folderC/folderE/folderFfile1file2...I want to deploy /folderA, /folderB and /folderC to targetServerA. The remaining folders and files will go to targetServerB. Is it possible? If so, would be appreciated if you can provide sample codes. Or any suggestions would be thankful.ps: My I am using TeamSite 6.1/Solaris, the OpenDeploys are 5.5.1 and 5.6 for the target servers.
... <filters> <includePath subPath="./folderA"/> <includePath subPath="./folderB"/> <includePath subPath="./folderC"/> </filters>...
... <filters> <excludePath subPath="./folderA"/> <excludePath subPath="./folderB"/> <excludePath subPath="./folderC"/> </filters>...
Thanks Ghoti,I did try to use <excludePath subPath...>, it won't work. But <excludePattern regex...> seems to work instead. <filters> <excludePattern regex="\folderA"/> <excludePattern regex="\folderA"/> <excludePattern regex="\folderA"/></filters>However, I still cannot get it to work with the inclusion filter. Below is what I've got.<filters> <includePath subPath="folderA"/> <includePath subPath="folderB"/> <includePath subPath="folderC"/></filters>What did I do wrong?
./folderX