12

rsyncantのアナログが必要です。問題は、ソース ディレクトリから以前にスクリプトで実行された一連のサブディレクトリにファイルをコピーすることです。

rsync -r --ignore-existing $BASE_DIR/common/config/* $BASE_DIR/config

助けてくれてありがとう

4

2 に答える 2

8

execを使用して Ant から rsyncを呼び出したり、 Javaタスクを使用してJarsyncまたはjava-syncを呼び出したり、カスタム Ant タスクを作成してこれらのライブラリのいずれかを呼び出すことができます。

于 2012-06-20T10:47:23.160 に答える
7

ゾンビの質問ですが、自分でもう一度検索する場合に備えてhttps://gist.github.com/garethr/878364を投稿します。何かあれば要点の内容を貼り付けます。

<project name="{{ name }}" default="help" basedir=".">
<property name="username" value="{{ username }}"/>
<property name="host" value="{{ host }}"/>
<property name="dir" value="/srv/{{ path }}/"/>

<tstamp>
    <format property="TODAY_UK" pattern="yyyyMMddhhmmss" locale="en,UK"/>
</tstamp>

<target name="help" description="show available commands" >
<exec executable="ant" dir="." failonerror="true">
<arg value="-p"/>
</exec>
</target>
<target name="deploy-to" description="show where we are deploying to" >
<echo>${username}@${host}:${dir}</echo>
</target>

<target name="deploy" description="deploy usng rsync" >
<exec executable="rsync" dir="." failonerror="true">
<arg value="-r"/>
<arg value="."/>
<arg value="${username}@${host}:${dir}"/>
<arg value="--exclude-from=rsync.excludes"/>
<arg value="-v"/>
</exec>
</target>

<target name="deploy-test" description="test deploy usng rsync with the dry run flag set" >
<exec executable="rsync" dir="." failonerror="true">
<arg value="-r"/>
<arg value="."/>
<arg value="${username}@${host}:${dir}"/>
<arg value="--exclude-from=rsync.excludes"/>
<arg value="--dry-run"/>
<arg value="-v"/>
</exec>
</target>

<target name="backup" description="backup site" >
<exec executable="scp" dir="." failonerror="true">
<arg value="-r"/>
<arg value="${username}@${host}:${dir}"/>
<arg value="backups/${TODAY_UK}"/>
</exec>
</target>

</project>
于 2014-01-06T15:59:43.183 に答える