2003-03-06 12:42:44 +00:00
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Language" content="en-us">
|
2005-04-29 18:58:16 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="../stylesheets/style.css">
|
2003-03-06 12:42:44 +00:00
|
|
|
<title>SCP Task</title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<h2><a name="scp">SCP</a></h2>
|
|
|
|
<h3>Description</h3>
|
2003-03-14 15:10:27 +00:00
|
|
|
|
|
|
|
<p><em>since Ant 1.6</em></p>
|
|
|
|
|
2005-05-15 21:13:06 +00:00
|
|
|
<p>Copies a file or FileSet to or from a (remote) machine running an SSH daemon.
|
2003-03-06 12:42:44 +00:00
|
|
|
FileSet <i>only</i> works for copying files from the local machine to a
|
|
|
|
remote machine.</p>
|
|
|
|
|
|
|
|
<p><b>Note:</b> This task depends on external libraries not included
|
|
|
|
in the Ant distribution. See <a
|
|
|
|
href="../install.html#librarydependencies">Library Dependencies</a>
|
2005-08-10 23:02:50 +00:00
|
|
|
for more information. This task has been tested with jsch-0.1.2 and later.</p>
|
|
|
|
|
|
|
|
<p>See also the <a href="scp.html">scp task</a></p>
|
2003-03-06 12:42:44 +00:00
|
|
|
|
|
|
|
<h3>Parameters</h3>
|
|
|
|
<table border="1" cellpadding="2" cellspacing="0">
|
|
|
|
<tr>
|
|
|
|
<td valign="top"><b>Attribute</b></td>
|
|
|
|
<td valign="top"><b>Description</b></td>
|
|
|
|
<td align="center" valign="top"><b>Required</b></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td valign="top">file</td>
|
|
|
|
<td valign="top">The file to copy. This can be a local path or a
|
2003-03-11 13:56:58 +00:00
|
|
|
remote path of the form <i>user[:password]@host:/directory/path</i>.
|
2004-11-12 10:36:29 +00:00
|
|
|
<i>:password</i> can be omitted if you use key based
|
2004-04-13 11:09:01 +00:00
|
|
|
authentication or specify the password attribute. The way remote
|
|
|
|
path is recognized is whether it contains @ character or not. This
|
|
|
|
will not work if your localPath contains @ character.</td>
|
2003-03-06 12:42:44 +00:00
|
|
|
<td valign="top" align="center">Yes, unless a nested
|
|
|
|
<code><fileset></code> element is used.</td>
|
|
|
|
</tr>
|
2004-04-13 11:09:01 +00:00
|
|
|
<tr>
|
|
|
|
<td valign="top">localFile</td>
|
|
|
|
<td valign="top">This is an alternative to the file attribute. But
|
|
|
|
this must always point to a local file. The reason this was added
|
|
|
|
was that when you give file attribute it is treated as remote if
|
|
|
|
it contains @ character. This character can exist also in local
|
|
|
|
paths. <em>since Ant 1.6.2</em></td>
|
|
|
|
<td valign="top" align="center">Alternative to file attribute.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td valign="top">remoteFile</td>
|
|
|
|
<td valign="top">This is an alternative to the file attribute. But
|
|
|
|
this must always point to a remote file. <em>since Ant 1.6.2</em></td>
|
|
|
|
<td valign="top" align="center">Alternative to file attribute.</td>
|
|
|
|
</tr>
|
2003-03-06 12:42:44 +00:00
|
|
|
<tr>
|
|
|
|
<td valign="top">todir</td>
|
|
|
|
<td valign="top">The directory to copy to. This can be a local path
|
2003-03-11 13:56:58 +00:00
|
|
|
or a remote path of the form <i>user[:password]@host:/directory/path</i>.
|
2004-11-12 10:36:29 +00:00
|
|
|
<i>:password</i> can be omitted if you use key based
|
2004-04-13 11:09:01 +00:00
|
|
|
authentication or specify the password attribute. The way remote
|
|
|
|
path is recognized is whether it contains @ character or not. This
|
|
|
|
will not work if your localPath contains @ character.</td>
|
2003-03-06 12:42:44 +00:00
|
|
|
<td valian="top" align="center">Yes</td>
|
|
|
|
</tr>
|
2004-04-13 11:09:01 +00:00
|
|
|
<tr>
|
|
|
|
<td valign="top">localTodir</td>
|
|
|
|
<td valign="top">This is an alternative to the todir
|
|
|
|
attribute. But this must always point to a local directory. The
|
|
|
|
reason this was added was that when you give todir attribute it is
|
|
|
|
treated as remote if it contains @ character. This character can
|
|
|
|
exist also in local paths. <em>since Ant 1.6.2</em></td>
|
|
|
|
<td valian="top" align="center">Alternative to todir attribute.</td>
|
|
|
|
</tr>
|
2004-06-14 12:23:50 +00:00
|
|
|
<tr>
|
|
|
|
<td valign="top">localTofile</td>
|
|
|
|
<td valign="top">Changes the file name to the given name while
|
|
|
|
receiving it, only useful if receiving a single file. <em>since
|
|
|
|
Ant 1.6.2</em></td>
|
|
|
|
<td valian="top" align="center">Alternative to todir attribute.</td>
|
|
|
|
</tr>
|
2004-04-13 11:09:01 +00:00
|
|
|
<tr>
|
|
|
|
<td valign="top">remoteTodir</td>
|
|
|
|
<td valign="top">This is an alternative to the todir
|
|
|
|
attribute. But this must always point to a remote directory.
|
|
|
|
<em>since Ant 1.6.2</em></td>
|
|
|
|
<td valian="top" align="center">Alternative to todir attribute.</td>
|
|
|
|
</tr>
|
2004-06-14 12:23:50 +00:00
|
|
|
<tr>
|
|
|
|
<td valign="top">remoteTofile</td>
|
|
|
|
<td valign="top">Changes the file name to the given name while
|
|
|
|
sending it, only useful if sending a single file. <em>since
|
|
|
|
Ant 1.6.2</em></td>
|
|
|
|
<td valian="top" align="center">Alternative to todir attribute.</td>
|
|
|
|
</tr>
|
2003-03-06 12:42:44 +00:00
|
|
|
<tr>
|
|
|
|
<td valign="top">port</td>
|
|
|
|
<td valign="top">The port to connect to on the remote host.</td>
|
|
|
|
<td valian="top" align="center">No, defaults to 22.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td valign="top">trust</td>
|
2003-10-16 11:21:14 +00:00
|
|
|
<td valign="top">This trusts all unknown hosts if set to yes/true.<br>
|
|
|
|
<strong>Note</strong> If you set this to false (the default), the
|
|
|
|
host you connect to must be listed in your knownhosts file, this
|
|
|
|
also implies that the file exists.</td>
|
2003-03-06 12:42:44 +00:00
|
|
|
<td valian="top" align="center">No, defaults to No.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td valign="top">knownhosts</td>
|
|
|
|
<td valign="top">This sets the known hosts file to use to validate
|
|
|
|
the identity of the remote host. This must be a SSH2 format file.
|
|
|
|
SSH1 format is not supported.</td>
|
|
|
|
<td valian="top" align="center">No, defaults to
|
2003-03-07 14:53:36 +00:00
|
|
|
${user.home}/.ssh/known_hosts.</td>
|
2003-03-06 12:42:44 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td valign="top">failonerror</td>
|
2003-10-28 10:29:53 +00:00
|
|
|
<td valign="top">Whether to halt the build if the transfer fails.
|
2003-03-06 12:42:44 +00:00
|
|
|
</td>
|
|
|
|
<td valign="top" align="center">No; defaults to true.</td>
|
|
|
|
</tr>
|
2003-03-11 13:56:58 +00:00
|
|
|
<tr>
|
|
|
|
<td valign="top">password</td>
|
|
|
|
<td valign="top">The password.</td>
|
|
|
|
<td valign="top" align="center">Not if you are using key based
|
|
|
|
authentication or the password has been given in the file or
|
|
|
|
todir attribute.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td valign="top">keyfile</td>
|
|
|
|
<td valign="top">Location of the file holding the private key.</td>
|
|
|
|
<td valign="top" align="center">Yes, if you are using key based
|
|
|
|
authentication.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td valign="top">passphrase</td>
|
|
|
|
<td valign="top">Passphrase for your private key.</td>
|
|
|
|
<td valign="top" align="center">Yes, if you are using key based
|
|
|
|
authentication.</td>
|
|
|
|
</tr>
|
2004-04-13 11:09:01 +00:00
|
|
|
<tr>
|
|
|
|
<td valign="top">verbose</td>
|
|
|
|
<td valign="top">Determines whether SCP outputs verbosely to the
|
|
|
|
user. Currently this means outputting dots/stars showing the
|
|
|
|
progress of a file transfer. <em>since Ant 1.6.2</em></td>
|
|
|
|
<td valign="top" align="center">No; defaults to false.</td>
|
|
|
|
</tr>
|
2003-03-06 12:42:44 +00:00
|
|
|
</table>
|
|
|
|
<h3>Parameters specified as nested elements</h3>
|
|
|
|
|
|
|
|
<h4>fileset</h4>
|
|
|
|
<p><a href="../CoreTypes/fileset.html">FileSet</a>s are used to select
|
|
|
|
sets of files to copy.
|
|
|
|
To use a fileset, the <code>todir</code> attribute must be set.</p>
|
|
|
|
|
|
|
|
<h3>Examples</h3>
|
|
|
|
<p><b>Copy a single local file to a remote machine</b></p>
|
|
|
|
<pre>
|
|
|
|
<scp file="myfile.txt" todir="user:password@somehost:/home/chuck"/>
|
|
|
|
</pre>
|
2003-03-11 13:56:58 +00:00
|
|
|
|
|
|
|
<p><b>Copy a single local file to a remote machine with separate
|
|
|
|
password attribute</b></p>
|
|
|
|
<pre>
|
|
|
|
<scp file="myfile.txt" todir="user@somehost:/home/chuck" password="password"/>
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
<p><b>Copy a single local file to a remote machine using key base
|
|
|
|
authentication.</b></p>
|
|
|
|
<pre>
|
|
|
|
<scp file="myfile.txt"
|
|
|
|
todir="user@somehost:/home/chuck"
|
|
|
|
keyfile="${user.home}/.ssh/id_dsa"
|
|
|
|
passphrase="my extremely secret passphrase"
|
|
|
|
/>
|
|
|
|
</pre>
|
|
|
|
|
2003-03-06 12:42:44 +00:00
|
|
|
<p><b>Copy a single remote file to a local directory</b></p>
|
|
|
|
<pre>
|
|
|
|
<scp file="user:password@somehost:/home/chuck/myfile.txt" todir="../some/other/dir"/>
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
<p><b>Copy a remote directory to a local directory</b></p>
|
|
|
|
<pre>
|
2004-11-19 09:07:12 +00:00
|
|
|
<scp file="user:password@somehost:/home/chuck/*" todir="/home/sara"/>
|
2003-03-06 12:42:44 +00:00
|
|
|
</pre>
|
|
|
|
|
|
|
|
<p><b>Copy a local directory to a remote directory</b></p>
|
|
|
|
<pre>
|
|
|
|
<scp todir="user:password@somehost:/home/chuck/">
|
|
|
|
<fileset dir="src_dir"/>
|
|
|
|
</scp>
|
|
|
|
</pre>
|
|
|
|
<p><b>Copy a set of files to a directory</b></p>
|
|
|
|
<pre>
|
|
|
|
<scp todir="user:password@somehost:/home/chuck">
|
|
|
|
<fileset dir="src_dir">
|
|
|
|
<include name="**/*.java"/>
|
|
|
|
</fileset>
|
|
|
|
</scp>
|
|
|
|
|
|
|
|
<scp todir="user:password@somehost:/home/chuck">
|
|
|
|
<fileset dir="src_dir" excludes="**/*.java"/>
|
|
|
|
</scp>
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
<p><strong>Security Note:</strong> Hard coding passwords and/or usernames
|
|
|
|
in scp task can be a serious security hole. Consider using variable
|
2005-05-15 21:13:06 +00:00
|
|
|
substitution and include the password on the command line. For example:
|
|
|
|
<p>
|
2003-03-06 12:42:44 +00:00
|
|
|
<pre>
|
|
|
|
<scp todir="${username}:${password}@host:/dir" ...>
|
|
|
|
</pre>
|
2005-05-15 21:13:06 +00:00
|
|
|
Invoking ant with the following command line:
|
2003-03-06 12:42:44 +00:00
|
|
|
<pre>
|
|
|
|
ant -Dusername=me -Dpassword=mypassword target1 target2
|
|
|
|
</pre>
|
2005-05-15 21:13:06 +00:00
|
|
|
|
|
|
|
Is slightly better, but the username/password is exposed to all users on an Unix
|
|
|
|
system (via the ps command). The best approach is to use the
|
|
|
|
<code><input></code> task and/or retrieve the password from a (secured)
|
|
|
|
.properties file.
|
|
|
|
|
|
|
|
<p>
|
2003-03-06 12:42:44 +00:00
|
|
|
|
|
|
|
<p><strong>Unix Note:</strong> File permissions are not retained when files
|
|
|
|
are copied; they end up with the default <code>UMASK</code> permissions
|
|
|
|
instead. This is caused by the lack of any means to query or set file
|
|
|
|
permissions in the current Java runtimes. If you need a permission-
|
|
|
|
preserving copy function, use <code><exec executable="scp" ... ></code>
|
|
|
|
instead.
|
|
|
|
</p>
|
|
|
|
|
2005-03-07 18:11:14 +00:00
|
|
|
<hr><p align="center">Copyright © 2003-2005 The Apache Software Foundation.
|
2003-03-06 12:42:44 +00:00
|
|
|
All rights Reserved.</p>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|