phing rsync exec

raw

phork0.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
    <target name="rsync">
        <exec executable="rsync" dir="." outputProperty="sync.result" checkreturn="true">
            <arg value="--recursive" />
            <arg value="--compress" />
            <arg value="--human-readable" />
            <arg value="--checksum" />
            <!-- ACND-36: add symlinks to the sync -->
            <arg value="--links" />
 
            <arg value="--delete" />
            <arg value="--delete-excluded" />
            <arg value="--chmod=ug=rwX" />
 
            <arg value="--exclude=desktop.ini" />
            <arg value="--exclude=Thumbs.db" />
            <arg value="--exclude=.*" />
            <arg line="${arg_dryrun}" />
            <arg line="${syncparam}" />
            <arg line="${syncparam.modul}" />
            <arg value="." />
            <arg value="${synctarget}${ext.key}" />
        </exec>
    </target>
 
Christian Weiske Christian Weiske
owner

History