Skip to content

Commit

Permalink
Upload UK Federation files to new location.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Nov 20, 2006
1 parent e9a7505 commit 2f6e8d0
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -124,16 +124,35 @@
Push all generated XML files, and entity fragment files, to the remote machine.
-->
<target name="push" depends="get.remote.pass">
<!--
Push federation fragment files.
-->
<echo>Pushing entity fragment files.</echo>
<scp failonerror="true" password="${remote.pass}" remoteTodir="${remote.loc.sdss}/entities"
knownhosts="${known.hosts}">
<fileset dir="${entities.dir}">
<include name="*.xml"/>
</fileset>
</scp>
<!--
Push metadata files for the SDSS Federation.
-->
<echo>Pushing SDSS Federation metadata files.</echo>
<scp failonerror="true" password="${remote.pass}" remoteTodir="${remote.loc.sdss}"
knownhosts="${known.hosts}">
<fileset dir="${xml.dir}">
<include name="**/*.xml"/>
<include name="*.xml"/>
<exclude name="ukfederation-*.xml"/>
</fileset>
</scp>
<scp failonerror="true" password="${remote.pass}" remoteTodir="${remote.loc.sdss}/entities"
<!--
Push metadata files for the UK Federation.
-->
<echo>Pushing UK Federation metadata files.</echo>
<scp failonerror="true" password="${remote.pass}" remoteTodir="${remote.loc.uk}"
knownhosts="${known.hosts}">
<fileset dir="${entities.dir}">
<include name="**/*.xml"/>
<fileset dir="${xml.dir}">
<include name="ukfederation-*.xml"/>
</fileset>
</scp>
</target>
Expand Down

0 comments on commit 2f6e8d0

Please sign in to comment.