Former-commit-id:9f19e3f712
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f] Former-commit-id:06a8b51d6d
26 lines
No EOL
892 B
XML
26 lines
No EOL
892 B
XML
<project basedir="." default="deploy"
|
|
name="com.raytheon.uf.tools.gfesuite.servicebackup">
|
|
<available file="../build.edex" property="build.dir.location"
|
|
value="../build.edex" />
|
|
<available file="../../../../../build.edex" property="build.dir.location"
|
|
value="../../../../../build.edex" />
|
|
|
|
<import file="${build.dir.location}/basebuilds/component_deploy_base.xml" />
|
|
|
|
<!-- Copy the service backup directory structure to the correct location -->
|
|
<copy todir="${svcbudir}">
|
|
<fileset dir="${basedir}/svcBackup" />
|
|
</copy>
|
|
|
|
<!-- Change permissions on the GFESuite executables -->
|
|
<chmod perm="ugo+rx">
|
|
<fileset dir="${esbDir}/../GFESuite/bin">
|
|
<include name="*" />
|
|
<include name="*.py" />
|
|
<include name="*.sh" />
|
|
<exclude name="read.me" />
|
|
</fileset>
|
|
</chmod>
|
|
<chmod dir="${esbDir}/../GFESuite/ServiceBackup/scripts" perm="ugo+rx"
|
|
includes="**/**" />
|
|
</project> |