Skip to content

Commit

Permalink
Allow configuring the SSH port in "fs.scp.unsigned.files.to.orchestra…
Browse files Browse the repository at this point in the history
…tor"
  • Loading branch information
Alejandro Perez committed Jun 4, 2024
1 parent cf6c1c1 commit ca3ad20
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@
<property name="orchestrator.user" value="jenkins"/>
<property name="orchestrator.hostname" value="orchestrator.infr.ukfederation.org.uk"/>
<property name="orchestrator.path" value="${shared.ws.dir}/build"/>
<property name="orchestrator.port" value="22"/>
<property name="orchestrator.url" value="${orchestrator.user}@${orchestrator.hostname}:${orchestrator.path}"/>

<!--
Expand Down Expand Up @@ -2222,7 +2223,7 @@

<target name="fs.scp.unsigned.files.to.orchestrator">
<echo>SCPing unsigned files and stats file from output dir to orchestrator's build dir.</echo>
<scp failonerror="true" remoteTodir="${orchestrator.url}" keyfile="~/.ssh/id_rsa" knownhosts="~/.ssh/known_hosts">
<scp failonerror="true" remoteTodir="${orchestrator.url}" port="${orchestrator.port}" keyfile="~/.ssh/id_rsa" knownhosts="~/.ssh/known_hosts">
<fileset dir="${output.dir}">
<include name="${mdaggr.prod.unsigned}"/>
<include name="${mdaggr.wayf.unsigned}"/>
Expand Down

0 comments on commit ca3ad20

Please sign in to comment.