Skip to content

Commit

Permalink
Fix typo when calling sshexec
Browse files Browse the repository at this point in the history
See ukf/ukf-meta#244
  • Loading branch information
Alex Stuart committed Jul 20, 2020
1 parent 4a44c93 commit 0470d58
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2161,7 +2161,7 @@
</fileset>
</scp>
<sshexec
user="${md.user}" host="${md.dist.host-ne-01.name}" keyfile="~/.ssh/id_rsa" knownhosts="~/.ssh/known_hosts"
username="${md.user}" host="${md.dist.host-ne-01.name}" keyfile="~/.ssh/id_rsa" knownhosts="~/.ssh/known_hosts"
command="/usr/bin/chmod a+x ${md.githook.path}/${post-receive-githook}"
failonerror="true"
/>
Expand All @@ -2172,7 +2172,7 @@
</fileset>
</scp>
<sshexec
user="${md.user}" host="${md.dist.host-ne-02.name}" keyfile="~/.ssh/id_rsa" knownhosts="~/.ssh/known_hosts"
username="${md.user}" host="${md.dist.host-ne-02.name}" keyfile="~/.ssh/id_rsa" knownhosts="~/.ssh/known_hosts"
command="/usr/bin/chmod a+x ${md.githook.path}/${post-receive-githook}"
failonerror="true"
/>
Expand All @@ -2183,7 +2183,7 @@
</fileset>
</scp>
<sshexec
user="${md.user}" host="${md.dist.host-we-01.name}" keyfile="~/.ssh/id_rsa" knownhosts="~/.ssh/known_hosts"
username="${md.user}" host="${md.dist.host-we-01.name}" keyfile="~/.ssh/id_rsa" knownhosts="~/.ssh/known_hosts"
command="/usr/bin/chmod a+x ${md.githook.path}/${post-receive-githook}"
failonerror="true"
/>
Expand All @@ -2194,7 +2194,7 @@
</fileset>
</scp>
<sshexec
user="${md.user}" host="${md.dist.host-we-02.name}" keyfile="~/.ssh/id_rsa" knownhosts="~/.ssh/known_hosts"
username="${md.user}" host="${md.dist.host-we-02.name}" keyfile="~/.ssh/id_rsa" knownhosts="~/.ssh/known_hosts"
command="/usr/bin/chmod a+x ${md.githook.path}/${post-receive-githook}"
failonerror="true"
/>
Expand Down

0 comments on commit 0470d58

Please sign in to comment.