26 lines
892 B
XML
26 lines
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>
|