Post a reply

Options
Add an Attachment

If you do not want to add an Attachment to your Post, please leave the Fields blank.

(maximum 10 MB; please compress large files; only common media, archive, text and programming file formats are allowed)

Options

Topic review

tcheric

Thanks for getting back to me.

I used to run a more recent version until I started getting problem with the Data.fs file because of its size. This is the reason why, after checking some posts in this forum, I decided to switch to the v. 4.1.9
With 4.1.9, I am able to copy the Data.fs file across, BUT, still, I am getting this error code at the end.

I hope this makes sense.

Thanks,
Eric.
martin

Re: ERRORLEVEL = 1 on script, despite file being transferred

Please upgrade to the lastest stable version. Than look for "Script: Failed" in the session log to find a cause for the error code.
Guest

Re: ERRORLEVEL = 1 on script, despite file being transferred

Adding the full logs as attachment.
Thanks.
Guest

ERRORLEVEL = 1 on script, despite file being transferred

Hi

I have found several posts on this topic in this forum, but somehow, none of them seems to apply to my case.
Hoping someone can point me in the right direction.

Thanks

Here is my code:
@ECHO OFF


REM
REM Backup
REM
REM Delete log file of previous day
IF EXIST C:\Scripts\boro_remote_daily.log DEL C:\Scripts\boro_remote_daily.log
REM
REM Execute the backup command.
"C:\Program Files\WinSCP\WinSCP.com" /script=C:\Scripts\boro_backup_script.txt /ini=C:\Scripts\WinSCP.ini /log=C:\Scripts\boro_remote_daily.log


IF ERRORLEVEL 1 GOTO error

REM
REM success handler
REM
REM
ECHO success.
REM Generate email header
ECHO FROM: xxxxxxxxx@xxxxxxxxx.co.uk >> %TEMP%\temp.mail
ECHO To: xxxxxxxxx@xxxxxxxxx.co.uk. >> %TEMP%\temp.mail
ECHO Subject: Success: The remote backup of BORO Website was successful >> %TEMP%\temp.mail
ECHO.>> %TEMP%\temp.mail
REM
REM Empty email.
REM Send email
c:\usr\lib\sendmail.exe -t < %TEMP%\temp.mail

GOTO cleanup


REM
REM error handler
REM
:error
REM
ECHO Failure.
REM Generate email header
ECHO FROM: xxxxxxxxx@xxxxxxxxx.co.uk >> %TEMP%\temp.mail
ECHO To: xxxxxxxxx@xxxxxxxxx.co.uk. >> %TEMP%\temp.mail
ECHO CC: xxxxxxxxx@xxxxxxxxx.co.uk. >> %TEMP%\temp.mail
ECHO CC: xxxxxxxxx@xxxxxxxxx.co.uk. >> %TEMP%\temp.mail
ECHO Subject: Failure: The remote backup of BORO Website failed %ERRORLEVEL% >> %TEMP%\temp.mail
ECHO.>> %TEMP%\temp.mail
REM
REM Create email file (Header + Body)
COPY /B %TEMP%\temp.mail+C:\Scripts\boro_remote_daily.log %TEMP%\temp1.mail

REM Send email
c:\usr\lib\sendmail.exe -t < %TEMP%\temp1.mail

GOTO cleanup

REM
REM Cleanup tasks
REM
:cleanup
REM
ECHO Cleanup
REM Delete email header file
IF EXIST %TEMP%\temp.mail DEL %TEMP%\temp.mail

REM
REM Delete email file
IF EXIST %TEMP%\temp1.mail DEL %TEMP%\temp1.mail

REM DEL C:\Scripts\boro_remote_daily.log


And here my WinSCP script

# Automatically answer all prompts negatively not to stall

# the script on errors

option batch continue

# Disable overwrite confirmations that conflict with the previous
# option confirm off

option reconnecttime 10

open boro

synchronize local -criteria=time C:\Backups\BORO\Mirror\parts\instance\Extensions /opt/Plone/boro/parts/instance/Extensions

synchronize local -criteria=time C:\Backups\BORO\Mirror\parts\instance\Products /opt/Plone/boro/parts/instance/Products

synchronize local -criteria=time C:\Backups\BORO\Mirror\parts\productdistros /opt/Plone/boro/parts/productdistros

option include "/opt/Plone/boro/parts/instance/etc/zope.conf"
synchronize local -criteria=time C:\Backups\BORO\Mirror\parts\instance\etc /opt/Plone/boro/parts/instance/etc/

option include "/opt/Plone/boro/var/filestorage/Data.fs.tgz"
synchronize local -criteria=time C:\Backups\BORO\Mirror\var\filestorage /opt/Plone/boro/var/filestorage

close

exit


Log file generated:
[code:1:998099e592]. 2012-05-27 17:14:21.468 --------------------------------------------------------------------------
. 2012-05-27 17:14:21.468 WinSCP Version 4.1.9 (Build 416) (OS 5.2.3790 Service Pack 2)
. 2012-05-27 17:14:21.468 Login time: 27 May 2012 17:14:21
. 2012-05-27 17:14:21.468 --------------------------------------------------------------------------
. 2012-05-27 17:14:21.468 Session name: boro
. 2012-05-27 17:14:21.468 Host name: xx.xxx.xx.xxx (Port: 22)
. 2012-05-27 17:14:21.468 User name: boro (Password: Yes, Key file: No)
. 2012-05-27 17:14:21.468 Tunnel: No
. 2012-05-27 17:14:21.468 Transfer Protocol: SFTP (SCP)
. 2012-05-27 17:14:21.468 Ping type: -, Ping interval: 30 sec; Timeout: 15 sec
. 2012-05-27 17:14:21.468 Proxy: none
. 2012-05-27 17:14:21.468 SSH protocol version: 2; Compression: No
. 2012-05-27 17:14:21.468 Bypass authentication: No
. 2012-05-27 17:14:21.468 Try agent: Yes; Agent forwarding: No; TIS/CryptoCard: No; KI: Yes; GSSAPI: No
. 2012-05-27 17:14:21.468 Ciphers: aes,blowfish,3des,WARN,arcfour,des; Ssh2DES: No
. 2012-05-27 17:14:21.468 SSH Bugs: -,-,-,-,-,-,-,-
. 2012-05-27 17:14:21.468 SFTP Bugs: -,-
. 2012-05-27 17:14:21.468 Return code variable: Autodetect; Lookup user groups: Yes
. 2012-05-27 17:14:21.468 Shell: default, EOL: 0
. 2012-05-27 17:14:21.468 Clear aliases: Yes, Unset nat.vars: Yes, Resolve symlinks: Yes
. 2012-05-27 17:14:21.468 LS: ls -la, Ign LS warn: Yes, Scp1 Comp: No
. 2012-05-27 17:14:21.468 Local directory: default, Remote directory: /home/boro, Update: No, Cache: Yes
. 2012-05-27 17:14:21.468 Cache directory changes: Yes, Permanent: Yes
. 2012-05-27 17:14:21.468 DST mode: 1
. 2012-05-27 17:14:21.468 --------------------------------------------------------------------------
. 2012-05-27 17:14:21.468 Looking up host "xx.xxx.xx.xxx"
. 2012-05-27 17:14:21.468 Connecting to xx.xxx.xx.xxx port 22
. 2012-05-27 17:14:21.531 Server version: SSH-2.0-OpenSSH_4.2p1 Debian-7ubuntu3.5
. 2012-05-27 17:14:21.531 We claim version: SSH-2.0-WinSCP_release_4.1.9
. 2012-05-27 17:14:21.578 SSPI: acquired credentials for: tchepannoue@BALDER
. 2012-05-27 17:14:21.578 Cannot convert IP address to SPN: DNS is not trusted
. 2012-05-27 17:14:21.578 GSSKEX disabled: The operation completed successfully.

. 2012-05-27 17:14:21.593 Using SSH protocol version 2
. 2012-05-27 17:14:21.609 Doing Diffie-Hellman group exchange
. 2012-05-27 17:14:21.687 Doing Diffie-Hellman key exchange with hash SHA-1
. 2012-05-27 17:14:21.953 Host key fingerprint is:
. 2012-05-27 17:14:21.953 ssh-rsa 2048 bf:37:17:5f:6d:74:80:d8:c5:3a:46:7a:7f:4f:9c:42
. 2012-05-27 17:14:21.953 Initialised AES-256 CBC client->server encryption
. 2012-05-27 17:14:21.953 Initialised HMAC-SHA1 client->server MAC algorithm
. 2012-05-27 17:14:21.953 Initialised AES-256 CBC server->client encryption
. 2012-05-27 17:14:21.953 Initialised HMAC-SHA1 server->client MAC algorithm
! 2012-05-27 17:14:22.046 Using username "boro".
. 2012-05-27 17:14:22.109 Keyboard-interactive authentication refused
. 2012-05-27 17:14:22.109 Prompt (6, SSH password, , &Password: )
. 2012-05-27 17:14:22.109 Using stored password.
. 2012-05-27 17:14:22.109 Sent password
. 2012-05-27 17:14:22.156 Access granted
. 2012-05-27 17:14:22.171 Opened channel for session
. 2012-05-27 17:14:22.203 Primary command failed; attempting fallback
. 2012-05-27 17:14:22.234 Started a shell/command
. 2012-05-27 17:14:22.234 --------------------------------------------------------------------------
. 2012-05-27 17:14:22.234 Using SCP protocol.
. 2012-05-27 17:14:22.234 Doing startup conversation with host.
. 2012-05-27 17:14:22.234 Skipping host startup message (if any).
> 2012-05-27 17:14:22.234 echo "WinSCP: this is end-of-file:0"
< 2012-05-27 17:14:22.328 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:22.328 Detecting variable containing return code of last command.
. 2012-05-27 17:14:22.328 Trying "$status".
> 2012-05-27 17:14:22.328 echo "$status" ; echo "WinSCP: this is end-of-file:0"
< 2012-05-27 17:14:22.421 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:22.421 Trying "$?".
> 2012-05-27 17:14:22.421 echo "$?" ; echo "WinSCP: this is end-of-file:0"
< 2012-05-27 17:14:22.515 0
< 2012-05-27 17:14:22.515 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:22.515 Return code variable "$?" selected.
. 2012-05-27 17:14:22.515 Clearing all aliases.
> 2012-05-27 17:14:22.515 unalias "ls" ; echo "WinSCP: this is end-of-file:$?"
! 2012-05-27 17:14:22.609 -sh: line 4: unalias: ls: not found
< 2012-05-27 17:14:22.609 WinSCP: this is end-of-file:1
> 2012-05-27 17:14:22.609 unalias "echo" ; echo "WinSCP: this is end-of-file:$?"
! 2012-05-27 17:14:22.703 -sh: line 5: unalias: echo: not found
< 2012-05-27 17:14:22.703 WinSCP: this is end-of-file:1
> 2012-05-27 17:14:22.703 unalias "pwd" ; echo "WinSCP: this is end-of-file:$?"
! 2012-05-27 17:14:22.796 -sh: line 6: unalias: pwd: not found
< 2012-05-27 17:14:22.796 WinSCP: this is end-of-file:1
> 2012-05-27 17:14:22.796 unalias "cd" ; echo "WinSCP: this is end-of-file:$?"
! 2012-05-27 17:14:22.890 -sh: line 7: unalias: cd: not found
< 2012-05-27 17:14:22.890 WinSCP: this is end-of-file:1
> 2012-05-27 17:14:22.890 unalias "groups" ; echo "WinSCP: this is end-of-file:$?"
! 2012-05-27 17:14:22.984 -sh: line 8: unalias: groups: not found
< 2012-05-27 17:14:22.984 WinSCP: this is end-of-file:1
> 2012-05-27 17:14:22.984 unalias "scp" ; echo "WinSCP: this is end-of-file:$?"
! 2012-05-27 17:14:23.078 -sh: line 9: unalias: scp: not found
< 2012-05-27 17:14:23.078 WinSCP: this is end-of-file:1
> 2012-05-27 17:14:23.078 unalias "rm" ; echo "WinSCP: this is end-of-file:$?"
! 2012-05-27 17:14:23.171 -sh: line 10: unalias: rm: not found
< 2012-05-27 17:14:23.171 WinSCP: this is end-of-file:1
> 2012-05-27 17:14:23.171 unalias "mv" ; echo "WinSCP: this is end-of-file:$?"
! 2012-05-27 17:14:23.312 -sh: line 11: unalias: mv: not found
< 2012-05-27 17:14:23.312 WinSCP: this is end-of-file:1
> 2012-05-27 17:14:23.312 unalias "mkdir" ; echo "WinSCP: this is end-of-file:$?"
! 2012-05-27 17:14:23.406 -sh: line 12: unalias: mkdir: not found
< 2012-05-27 17:14:23.406 WinSCP: this is end-of-file:1
> 2012-05-27 17:14:23.406 unalias "chmod" ; echo "WinSCP: this is end-of-file:$?"
! 2012-05-27 17:14:23.500 -sh: line 13: unalias: chmod: not found
< 2012-05-27 17:14:23.500 WinSCP: this is end-of-file:1
> 2012-05-27 17:14:23.500 unalias "chgrp" ; echo "WinSCP: this is end-of-file:$?"
! 2012-05-27 17:14:23.593 -sh: line 14: unalias: chgrp: not found
< 2012-05-27 17:14:23.593 WinSCP: this is end-of-file:1
> 2012-05-27 17:14:23.593 unalias "chown" ; echo "WinSCP: this is end-of-file:$?"
! 2012-05-27 17:14:23.687 -sh: line 15: unalias: chown: not found
< 2012-05-27 17:14:23.687 WinSCP: this is end-of-file:1
> 2012-05-27 17:14:23.687 unalias "unset" ; echo "WinSCP: this is end-of-file:$?"
! 2012-05-27 17:14:23.781 -sh: line 16: unalias: unset: not found
< 2012-05-27 17:14:23.781 WinSCP: this is end-of-file:1
> 2012-05-27 17:14:23.781 unalias "unalias" ; echo "WinSCP: this is end-of-file:$?"
! 2012-05-27 17:14:23.859 -sh: line 17: unalias: unalias: not found
< 2012-05-27 17:14:23.859 WinSCP: this is end-of-file:1
> 2012-05-27 17:14:23.875 unalias "ln" ; echo "WinSCP: this is end-of-file:$?"
! 2012-05-27 17:14:23.953 -sh: line 18: unalias: ln: not found
< 2012-05-27 17:14:23.953 WinSCP: this is end-of-file:1
> 2012-05-27 17:14:23.968 unalias "cp" ; echo "WinSCP: this is end-of-file:$?"
! 2012-05-27 17:14:24.062 -sh: line 19: unalias: cp: not found
< 2012-05-27 17:14:24.062 WinSCP: this is end-of-file:1
. 2012-05-27 17:14:24.062 Clearing national user variables.
> 2012-05-27 17:14:24.062 unset "LANG" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:24.156 WinSCP: this is end-of-file:0
> 2012-05-27 17:14:24.156 unset "LANGUAGE" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:24.250 WinSCP: this is end-of-file:0
> 2012-05-27 17:14:24.250 unset "LC_CTYPE" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:24.343 WinSCP: this is end-of-file:0
> 2012-05-27 17:14:24.343 unset "LC_COLLATE" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:24.437 WinSCP: this is end-of-file:0
> 2012-05-27 17:14:24.437 unset "LC_MONETARY" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:24.531 WinSCP: this is end-of-file:0
> 2012-05-27 17:14:24.531 unset "LC_NUMERIC" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:24.625 WinSCP: this is end-of-file:0
> 2012-05-27 17:14:24.625 unset "LC_TIME" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:24.718 WinSCP: this is end-of-file:0
> 2012-05-27 17:14:24.718 unset "LC_MESSAGES" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:24.812 WinSCP: this is end-of-file:0
> 2012-05-27 17:14:24.812 unset "LC_ALL" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:24.906 WinSCP: this is end-of-file:0
> 2012-05-27 17:14:24.906 unset "HUMAN_BLOCKS" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:25.000 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:25.015 Looking up groups and users.
> 2012-05-27 17:14:25.015 groups ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:25.109 root
< 2012-05-27 17:14:25.281 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:25.281 Following groups found:
. 2012-05-27 17:14:25.281 root
. 2012-05-27 17:14:25.281 No users found.
. 2012-05-27 17:14:25.281 Changing directory to "/home/boro".
> 2012-05-27 17:14:25.281 cd "/home/boro" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:25.375 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:25.390 Getting current directory name.
> 2012-05-27 17:14:25.390 pwd ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:25.484 /home/boro
< 2012-05-27 17:14:25.484 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:25.484 Startup conversation with host finished.
. 2012-05-27 17:14:25.484 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Extensions' and remote directory '/opt/Plone/boro/parts/instance/Extensions', mode = 1, params = 2
. 2012-05-27 17:14:25.484 Listing directory "/opt/Plone/boro/parts/instance/Extensions".
> 2012-05-27 17:14:25.484 ls -la --full-time "/opt/Plone/boro/parts/instance/Extensions" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:25.593 total 12
< 2012-05-27 17:14:25.593 drwxr-xr-x 2 root root 4096 2011-02-24 12:34:54.000000000 +0000 .
< 2012-05-27 17:14:25.593 drwxr-xr-x 10 root root 4096 2011-02-24 12:34:54.000000000 +0000 ..
< 2012-05-27 17:14:25.593 -rw-r--r-- 1 root root 180 2011-02-24 12:34:54.000000000 +0000 README.txt
< 2012-05-27 17:14:25.812 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:25.828 Directory listing with --full-time succeed, next time all errors during directory listing will be displayed immediatelly.
. 2012-05-27 17:14:25.875 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products' and remote directory '/opt/Plone/boro/parts/instance/Products', mode = 1, params = 2
. 2012-05-27 17:14:25.890 Listing directory "/opt/Plone/boro/parts/instance/Products".
> 2012-05-27 17:14:25.890 ls -la --full-time "/opt/Plone/boro/parts/instance/Products" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:25.984 total 28
< 2012-05-27 17:14:25.984 drwxr-xr-x 6 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:25.984 drwxr-xr-x 10 root root 4096 2011-02-24 12:34:54.000000000 +0000 ..
< 2012-05-27 17:14:25.984 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 CacheFu-1.2-extras
< 2012-05-27 17:14:25.984 drwxr-xr-x 8 root root 4096 2011-02-24 13:05:31.000000000 +0000 Collage
< 2012-05-27 17:14:25.984 drwxr-xr-x 5 root root 4096 2011-02-24 13:05:31.000000000 +0000 Products.CacheSetup-1.2
< 2012-05-27 17:14:25.984 -rw-r--r-- 1 root root 170 2011-02-24 13:05:31.000000000 +0000 README.txt
< 2012-05-27 17:14:25.984 drwxr-xr-x 9 root root 4096 2011-02-24 13:05:31.000000000 +0000 qPloneSkinBusiness4
< 2012-05-27 17:14:26.140 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:26.140 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\CacheFu-1.2-extras' and remote directory '/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras', mode = 1, params = 2
. 2012-05-27 17:14:26.140 Listing directory "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras".
> 2012-05-27 17:14:26.140 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:26.250 total 16
< 2012-05-27 17:14:26.250 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:26.250 drwxr-xr-x 6 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:26.250 -rw-r--r-- 1 root root 1158 2011-02-24 13:05:31.000000000 +0000 README.txt
< 2012-05-27 17:14:26.250 drwxr-xr-x 8 root root 4096 2011-02-24 13:05:31.000000000 +0000 cachefu-proxy-configs
< 2012-05-27 17:14:26.468 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:26.468 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\CacheFu-1.2-extras\cachefu-proxy-configs' and remote directory '/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs', mode = 1, params = 2
. 2012-05-27 17:14:26.468 Listing directory "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs".
> 2012-05-27 17:14:26.468 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:26.578 total 36
< 2012-05-27 17:14:26.578 drwxr-xr-x 8 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:26.578 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:26.578 -rw-r--r-- 1 root root 1296 2011-02-24 13:05:31.000000000 +0000 README.txt
< 2012-05-27 17:14:26.578 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 apache
< 2012-05-27 17:14:26.578 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 old-style
< 2012-05-27 17:14:26.578 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 squid
< 2012-05-27 17:14:26.578 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 squid-apache
< 2012-05-27 17:14:26.578 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 varnish
< 2012-05-27 17:14:26.578 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 varnish-apache
< 2012-05-27 17:14:26.796 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:26.796 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\CacheFu-1.2-extras\cachefu-proxy-configs\apache' and remote directory '/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/apache', mode = 1, params = 2
. 2012-05-27 17:14:26.796 Listing directory "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/apache".
> 2012-05-27 17:14:26.796 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/apache" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:26.906 total 20
< 2012-05-27 17:14:26.906 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:26.906 drwxr-xr-x 8 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:26.906 -rw-r--r-- 1 root root 336 2011-02-24 13:05:31.000000000 +0000 README.txt
< 2012-05-27 17:14:26.906 -rw-r--r-- 1 root root 1980 2011-02-24 13:05:31.000000000 +0000 apache-1.6.conf
< 2012-05-27 17:14:26.906 -rw-r--r-- 1 root root 2405 2011-02-24 13:05:31.000000000 +0000 apache-2.2.conf
< 2012-05-27 17:14:27.125 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:27.125 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\CacheFu-1.2-extras\cachefu-proxy-configs\old-style' and remote directory '/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/old-style', mode = 1, params = 2
. 2012-05-27 17:14:27.125 Listing directory "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/old-style".
> 2012-05-27 17:14:27.125 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/old-style" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:27.281 total 32
< 2012-05-27 17:14:27.281 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:27.281 drwxr-xr-x 8 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:27.281 -rw-r--r-- 1 root root 828 2011-02-24 13:05:31.000000000 +0000 Makefile
< 2012-05-27 17:14:27.281 -rw-r--r-- 1 root root 650 2011-02-24 13:05:31.000000000 +0000 README.txt
< 2012-05-27 17:14:27.281 -rwxr-xr-x 1 root root 4995 2011-02-24 13:05:31.000000000 +0000 makeconfig
< 2012-05-27 17:14:27.281 -rw-r--r-- 1 root root 1211 2011-02-24 13:05:31.000000000 +0000 squid.cfg
< 2012-05-27 17:14:27.281 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 templates
< 2012-05-27 17:14:27.453 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:27.453 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\CacheFu-1.2-extras\cachefu-proxy-configs\old-style\templates' and remote directory '/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/old-style/templates', mode = 1, params = 2
. 2012-05-27 17:14:27.453 Listing directory "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/old-style/templates".
> 2012-05-27 17:14:27.453 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/old-style/templates" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:27.562 total 60
< 2012-05-27 17:14:27.562 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:27.562 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:27.562 -rw-r--r-- 1 root root 1653 2011-02-24 13:05:31.000000000 +0000 deploy
< 2012-05-27 17:14:27.562 -rw-r--r-- 1 root root 1237 2011-02-24 13:05:31.000000000 +0000 httpd.conf
< 2012-05-27 17:14:27.562 -rw-r--r-- 1 root root 5689 2011-02-24 13:05:31.000000000 +0000 iRedirector.py
< 2012-05-27 17:14:27.562 -rw-r--r-- 1 root root 152 2011-02-24 13:05:31.000000000 +0000 purge_squid
< 2012-05-27 17:14:27.562 -rw-r--r-- 1 root root 10461 2011-02-24 13:05:31.000000000 +0000 squid.conf
< 2012-05-27 17:14:27.562 -rw-r--r-- 1 root root 3843 2011-02-24 13:05:31.000000000 +0000 squidAcl.py
< 2012-05-27 17:14:27.562 -rw-r--r-- 1 root root 9180 2011-02-24 13:05:31.000000000 +0000 squidRewriteRules.py
< 2012-05-27 17:14:27.562 -rw-r--r-- 1 root root 2403 2011-02-24 13:05:31.000000000 +0000 timing.py
< 2012-05-27 17:14:27.781 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:27.781 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\CacheFu-1.2-extras\cachefu-proxy-configs\squid' and remote directory '/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/squid', mode = 1, params = 2
. 2012-05-27 17:14:27.796 Listing directory "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/squid".
> 2012-05-27 17:14:27.796 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/squid" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:27.890 total 28
< 2012-05-27 17:14:27.890 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:27.890 drwxr-xr-x 8 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:27.890 -rw-r--r-- 1 root root 1411 2011-02-24 13:05:31.000000000 +0000 README.txt
< 2012-05-27 17:14:27.890 -rwxr-xr-x 1 root root 4753 2011-02-24 13:05:31.000000000 +0000 makeconfig
< 2012-05-27 17:14:27.890 -rw-r--r-- 1 root root 1384 2011-02-24 13:05:31.000000000 +0000 makeconfig.cfg
< 2012-05-27 17:14:27.890 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 templates
< 2012-05-27 17:14:28.109 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:28.109 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\CacheFu-1.2-extras\cachefu-proxy-configs\squid\templates' and remote directory '/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/squid/templates', mode = 1, params = 2
. 2012-05-27 17:14:28.109 Listing directory "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/squid/templates".
> 2012-05-27 17:14:28.109 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/squid/templates" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:28.218 total 40
< 2012-05-27 17:14:28.218 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:28.218 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:28.218 -rw-r--r-- 1 root root 1365 2011-02-24 13:05:31.000000000 +0000 deploy
< 2012-05-27 17:14:28.218 -rw-r--r-- 1 root root 5325 2011-02-24 13:05:31.000000000 +0000 iRedirector.py
< 2012-05-27 17:14:28.218 -rw-r--r-- 1 root root 153 2011-02-24 13:05:31.000000000 +0000 purge_squid
< 2012-05-27 17:14:28.218 -rw-r--r-- 1 root root 3066 2011-02-24 13:05:31.000000000 +0000 squid.conf
< 2012-05-27 17:14:28.218 -rw-r--r-- 1 root root 8777 2011-02-24 13:05:31.000000000 +0000 squidRewriteRules.py
< 2012-05-27 17:14:28.437 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:28.437 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\CacheFu-1.2-extras\cachefu-proxy-configs\squid-apache' and remote directory '/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/squid-apache', mode = 1, params = 2
. 2012-05-27 17:14:28.437 Listing directory "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/squid-apache".
> 2012-05-27 17:14:28.437 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/squid-apache" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:28.546 total 28
< 2012-05-27 17:14:28.546 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:28.546 drwxr-xr-x 8 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:28.546 -rw-r--r-- 1 root root 1252 2011-02-24 13:05:31.000000000 +0000 README.txt
< 2012-05-27 17:14:28.546 -rwxr-xr-x 1 root root 4788 2011-02-24 13:05:31.000000000 +0000 makeconfig
< 2012-05-27 17:14:28.546 -rw-r--r-- 1 root root 1397 2011-02-24 13:05:31.000000000 +0000 makeconfig.cfg
< 2012-05-27 17:14:28.546 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 templates
< 2012-05-27 17:14:28.765 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:28.765 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\CacheFu-1.2-extras\cachefu-proxy-configs\squid-apache\templates' and remote directory '/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/squid-apache/templates', mode = 1, params = 2
. 2012-05-27 17:14:28.765 Listing directory "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/squid-apache/templates".
> 2012-05-27 17:14:28.765 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/squid-apache/templates" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:28.875 total 24
< 2012-05-27 17:14:28.875 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:28.875 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:28.875 -rw-r--r-- 1 root root 1141 2011-02-24 13:05:31.000000000 +0000 deploy
< 2012-05-27 17:14:28.875 -rw-r--r-- 1 root root 1763 2011-02-24 13:05:31.000000000 +0000 httpd.conf
< 2012-05-27 17:14:28.875 -rw-r--r-- 1 root root 153 2011-02-24 13:05:31.000000000 +0000 purge_squid
< 2012-05-27 17:14:28.875 -rw-r--r-- 1 root root 3841 2011-02-24 13:05:31.000000000 +0000 squid.conf
< 2012-05-27 17:14:29.093 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:29.093 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\CacheFu-1.2-extras\cachefu-proxy-configs\varnish' and remote directory '/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/varnish', mode = 1, params = 2
. 2012-05-27 17:14:29.093 Listing directory "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/varnish".
> 2012-05-27 17:14:29.093 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/varnish" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:29.250 total 28
< 2012-05-27 17:14:29.250 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:29.250 drwxr-xr-x 8 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:29.250 -rw-r--r-- 1 root root 694 2011-02-24 13:05:31.000000000 +0000 README.txt
< 2012-05-27 17:14:29.250 -rwxr-xr-x 1 root root 4704 2011-02-24 13:05:31.000000000 +0000 makeconfig
< 2012-05-27 17:14:29.250 -rw-r--r-- 1 root root 925 2011-02-24 13:05:31.000000000 +0000 makeconfig.cfg
< 2012-05-27 17:14:29.250 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 templates
< 2012-05-27 17:14:29.421 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:29.421 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\CacheFu-1.2-extras\cachefu-proxy-configs\varnish\templates' and remote directory '/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/varnish/templates', mode = 1, params = 2
. 2012-05-27 17:14:29.421 Listing directory "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/varnish/templates".
> 2012-05-27 17:14:29.421 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/varnish/templates" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:29.531 total 24
< 2012-05-27 17:14:29.531 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:29.531 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:29.531 -rw-r--r-- 1 root root 822 2011-02-24 13:05:31.000000000 +0000 deploy
< 2012-05-27 17:14:29.531 -rw-r--r-- 1 root root 640 2011-02-24 13:05:31.000000000 +0000 varnish-start
< 2012-05-27 17:14:29.531 -rw-r--r-- 1 root root 78 2011-02-24 13:05:31.000000000 +0000 varnish-stop
< 2012-05-27 17:14:29.531 -rw-r--r-- 1 root root 2686 2011-02-24 13:05:31.000000000 +0000 varnish.vcl
< 2012-05-27 17:14:29.750 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:29.750 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\CacheFu-1.2-extras\cachefu-proxy-configs\varnish-apache' and remote directory '/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/varnish-apache', mode = 1, params = 2
. 2012-05-27 17:14:29.750 Listing directory "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/varnish-apache".
> 2012-05-27 17:14:29.750 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/varnish-apache" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:29.859 total 28
< 2012-05-27 17:14:29.859 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:29.859 drwxr-xr-x 8 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:29.859 -rw-r--r-- 1 root root 1256 2011-02-24 13:05:31.000000000 +0000 README.txt
< 2012-05-27 17:14:29.859 -rwxr-xr-x 1 root root 4709 2011-02-24 13:05:31.000000000 +0000 makeconfig
< 2012-05-27 17:14:29.859 -rw-r--r-- 1 root root 937 2011-02-24 13:05:31.000000000 +0000 makeconfig.cfg
< 2012-05-27 17:14:29.859 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 templates
< 2012-05-27 17:14:30.078 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:30.078 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\CacheFu-1.2-extras\cachefu-proxy-configs\varnish-apache\templates' and remote directory '/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/varnish-apache/templates', mode = 1, params = 2
. 2012-05-27 17:14:30.078 Listing directory "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/varnish-apache/templates".
> 2012-05-27 17:14:30.078 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/CacheFu-1.2-extras/cachefu-proxy-configs/varnish-apache/templates" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:30.187 total 28
< 2012-05-27 17:14:30.187 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:30.187 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:30.187 -rw-r--r-- 1 root root 923 2011-02-24 13:05:31.000000000 +0000 deploy
< 2012-05-27 17:14:30.187 -rw-r--r-- 1 root root 1566 2011-02-24 13:05:31.000000000 +0000 httpd.conf
< 2012-05-27 17:14:30.187 -rw-r--r-- 1 root root 640 2011-02-24 13:05:31.000000000 +0000 varnish-start
< 2012-05-27 17:14:30.187 -rw-r--r-- 1 root root 78 2011-02-24 13:05:31.000000000 +0000 varnish-stop
< 2012-05-27 17:14:30.187 -rw-r--r-- 1 root root 2593 2011-02-24 13:05:31.000000000 +0000 varnish.vcl
< 2012-05-27 17:14:30.406 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:30.406 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\Collage' and remote directory '/opt/Plone/boro/parts/instance/Products/Collage', mode = 1, params = 2
. 2012-05-27 17:14:30.406 Listing directory "/opt/Plone/boro/parts/instance/Products/Collage".
> 2012-05-27 17:14:30.406 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/Collage" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:30.515 total 92
< 2012-05-27 17:14:30.515 drwxr-xr-x 8 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:30.515 drwxr-xr-x 6 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:30.515 -rw-r--r-- 1 root root 989 2011-02-24 13:05:31.000000000 +0000 DEVELOPERS.txt
< 2012-05-27 17:14:30.515 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 Extensions
< 2012-05-27 17:14:30.515 -rw-r--r-- 1 root root 2059 2011-02-24 13:05:31.000000000 +0000 HISTORY.txt
< 2012-05-27 17:14:30.515 -rw-r--r-- 1 root root 1233 2011-02-24 13:05:31.000000000 +0000 README.txt
< 2012-05-27 17:14:30.515 -rw-r--r-- 1 root root 66 2011-02-24 13:05:31.000000000 +0000 TODO.txt
< 2012-05-27 17:14:30.515 -rw-r--r-- 1 root root 1731 2011-02-24 13:05:31.000000000 +0000 __init__.py
< 2012-05-27 17:14:30.515 drwxr-xr-x 5 root root 4096 2011-02-24 13:05:31.000000000 +0000 browser
< 2012-05-27 17:14:30.515 -rw-r--r-- 1 root root 324 2011-02-24 13:05:31.000000000 +0000 config.py
< 2012-05-27 17:14:30.515 -rw-r--r-- 1 root root 558 2011-02-24 13:05:31.000000000 +0000 configure.zcml
< 2012-05-27 17:14:30.515 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 content
< 2012-05-27 17:14:30.515 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 i18n
< 2012-05-27 17:14:30.515 -rw-r--r-- 1 root root 676 2011-02-24 13:05:31.000000000 +0000 interfaces.py
< 2012-05-27 17:14:30.515 -rw-r--r-- 1 root root 238 2011-02-24 13:05:31.000000000 +0000 kss.txt
< 2012-05-27 17:14:30.515 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 profiles
< 2012-05-27 17:14:30.515 -rw-r--r-- 1 root root 392 2011-02-24 13:05:31.000000000 +0000 profiles.zcml
< 2012-05-27 17:14:30.515 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 skins
< 2012-05-27 17:14:30.515 -rw-r--r-- 1 root root 1983 2011-02-24 13:05:31.000000000 +0000 tests.py
< 2012-05-27 17:14:30.515 -rw-r--r-- 1 root root 419 2011-02-24 13:05:31.000000000 +0000 utilities.py
< 2012-05-27 17:14:30.515 -rw-r--r-- 1 root root 4 2011-02-24 13:05:31.000000000 +0000 version.txt
< 2012-05-27 17:14:30.515 -rw-r--r-- 1 root root 3195 2011-02-24 13:05:31.000000000 +0000 viewlets.txt
< 2012-05-27 17:14:30.515 -rw-r--r-- 1 root root 2533 2011-02-24 13:05:31.000000000 +0000 viewmanager.py
< 2012-05-27 17:14:30.546 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:30.546 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\Collage\Extensions' and remote directory '/opt/Plone/boro/parts/instance/Products/Collage/Extensions', mode = 1, params = 2
. 2012-05-27 17:14:30.546 Listing directory "/opt/Plone/boro/parts/instance/Products/Collage/Extensions".
> 2012-05-27 17:14:30.546 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/Collage/Extensions" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:30.640 total 12
< 2012-05-27 17:14:30.640 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:30.640 drwxr-xr-x 8 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:30.640 -rw-r--r-- 1 root root 0 2011-02-24 13:05:31.000000000 +0000 __init__.py
< 2012-05-27 17:14:30.640 -rw-r--r-- 1 root root 827 2011-02-24 13:05:31.000000000 +0000 install.py
< 2012-05-27 17:14:30.843 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:30.843 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\Collage\browser' and remote directory '/opt/Plone/boro/parts/instance/Products/Collage/browser', mode = 1, params = 2
. 2012-05-27 17:14:30.843 Listing directory "/opt/Plone/boro/parts/instance/Products/Collage/browser".
> 2012-05-27 17:14:30.843 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/Collage/browser" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:30.953 total 84
< 2012-05-27 17:14:30.953 drwxr-xr-x 5 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:30.953 drwxr-xr-x 8 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:30.953 -rw-r--r-- 1 root root 0 2011-02-24 13:05:31.000000000 +0000 __init__.py
< 2012-05-27 17:14:30.953 -rw-r--r-- 1 root root 4022 2011-02-24 13:05:31.000000000 +0000 actions.py
< 2012-05-27 17:14:30.953 -rw-r--r-- 1 root root 1316 2011-02-24 13:05:31.000000000 +0000 actions.zcml
< 2012-05-27 17:14:30.953 -rw-r--r-- 1 root root 1694 2011-02-24 13:05:31.000000000 +0000 collage.py
< 2012-05-27 17:14:30.953 -rw-r--r-- 1 root root 2997 2011-02-24 13:05:31.000000000 +0000 column.py
< 2012-05-27 17:14:30.953 -rw-r--r-- 1 root root 2519 2011-02-24 13:05:31.000000000 +0000 configure.zcml
< 2012-05-27 17:14:30.953 -rw-r--r-- 1 root root 1122 2011-02-24 13:05:31.000000000 +0000 helper.py
< 2012-05-27 17:14:30.953 -rw-r--r-- 1 root root 3120 2011-02-24 13:05:31.000000000 +0000 kss.py
< 2012-05-27 17:14:30.953 -rw-r--r-- 1 root root 163 2011-02-24 13:05:31.000000000 +0000 manager.py
< 2012-05-27 17:14:30.953 -rw-r--r-- 1 root root 1882 2011-02-24 13:05:31.000000000 +0000 renderer.py
< 2012-05-27 17:14:30.953 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 templates
< 2012-05-27 17:14:30.953 -rw-r--r-- 1 root root 566 2011-02-24 13:05:31.000000000 +0000 utils.py
< 2012-05-27 17:14:30.953 -rw-r--r-- 1 root root 4653 2011-02-24 13:05:31.000000000 +0000 viewlet.py
< 2012-05-27 17:14:30.953 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 viewlets
< 2012-05-27 17:14:30.953 -rw-r--r-- 1 root root 4033 2011-02-24 13:05:31.000000000 +0000 viewlets.zcml
< 2012-05-27 17:14:30.953 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 views
< 2012-05-27 17:14:30.953 -rw-r--r-- 1 root root 2123 2011-02-24 13:05:31.000000000 +0000 views.py
< 2012-05-27 17:14:30.953 -rw-r--r-- 1 root root 6297 2011-02-24 13:05:31.000000000 +0000 views.zcml
< 2012-05-27 17:14:30.968 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:30.984 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\Collage\browser\templates' and remote directory '/opt/Plone/boro/parts/instance/Products/Collage/browser/templates', mode = 1, params = 2
. 2012-05-27 17:14:30.984 Listing directory "/opt/Plone/boro/parts/instance/Products/Collage/browser/templates".
> 2012-05-27 17:14:30.984 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/Collage/browser/templates" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:31.078 total 28
< 2012-05-27 17:14:31.078 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:31.078 drwxr-xr-x 5 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:31.078 -rw-r--r-- 1 root root 105 2011-02-24 13:05:31.000000000 +0000 collage_renderer.pt
< 2012-05-27 17:14:31.078 -rw-r--r-- 1 root root 106 2011-02-24 13:05:31.000000000 +0000 column_renderer.pt
< 2012-05-27 17:14:31.078 -rw-r--r-- 1 root root 1858 2011-02-24 13:05:31.000000000 +0000 existing_items_form.pt
< 2012-05-27 17:14:31.078 -rw-r--r-- 1 root root 216 2011-02-24 13:05:31.000000000 +0000 manager.pt
< 2012-05-27 17:14:31.078 -rw-r--r-- 1 root root 198 2011-02-24 13:05:31.000000000 +0000 row_renderer.pt
< 2012-05-27 17:14:31.281 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:31.281 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\Collage\browser\viewlets' and remote directory '/opt/Plone/boro/parts/instance/Products/Collage/browser/viewlets', mode = 1, params = 2
. 2012-05-27 17:14:31.281 Listing directory "/opt/Plone/boro/parts/instance/Products/Collage/browser/viewlets".
> 2012-05-27 17:14:31.281 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/Collage/browser/viewlets" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:31.390 total 48
< 2012-05-27 17:14:31.390 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:31.390 drwxr-xr-x 5 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:31.390 -rw-r--r-- 1 root root 1488 2011-02-24 13:05:31.000000000 +0000 actions.pt
< 2012-05-27 17:14:31.390 -rw-r--r-- 1 root root 455 2011-02-24 13:05:31.000000000 +0000 copy.pt
< 2012-05-27 17:14:31.390 -rw-r--r-- 1 root root 383 2011-02-24 13:05:31.000000000 +0000 icon.pt
< 2012-05-27 17:14:31.390 -rw-r--r-- 1 root root 1055 2011-02-24 13:05:31.000000000 +0000 insert-existing-item.pt
< 2012-05-27 17:14:31.390 -rw-r--r-- 1 root root 1332 2011-02-24 13:05:31.000000000 +0000 insert-new-item.pt
< 2012-05-27 17:14:31.390 -rw-r--r-- 1 root root 1339 2011-02-24 13:05:31.000000000 +0000 layout.pt
< 2012-05-27 17:14:31.390 -rw-r--r-- 1 root root 895 2011-02-24 13:05:31.000000000 +0000 modify_order_horizontal.pt
< 2012-05-27 17:14:31.390 -rw-r--r-- 1 root root 884 2011-02-24 13:05:31.000000000 +0000 modify_order_vertical.pt
< 2012-05-27 17:14:31.390 -rw-r--r-- 1 root root 500 2011-02-24 13:05:31.000000000 +0000 paste.pt
< 2012-05-27 17:14:31.390 -rw-r--r-- 1 root root 454 2011-02-24 13:05:31.000000000 +0000 split-column.pt
< 2012-05-27 17:14:31.609 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:31.609 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\Collage\browser\views' and remote directory '/opt/Plone/boro/parts/instance/Products/Collage/browser/views', mode = 1, params = 2
. 2012-05-27 17:14:31.625 Listing directory "/opt/Plone/boro/parts/instance/Products/Collage/browser/views".
> 2012-05-27 17:14:31.625 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/Collage/browser/views" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:31.718 total 112
< 2012-05-27 17:14:31.718 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:31.718 drwxr-xr-x 5 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:31.718 -rw-r--r-- 1 root root 805 2011-02-24 13:05:31.000000000 +0000 column_standard.pt
< 2012-05-27 17:14:31.718 -rw-r--r-- 1 root root 1350 2011-02-24 13:05:31.000000000 +0000 document_featured.pt
< 2012-05-27 17:14:31.718 -rw-r--r-- 1 root root 2020 2011-02-24 13:05:31.000000000 +0000 document_portlet.pt
< 2012-05-27 17:14:31.718 -rw-r--r-- 1 root root 1258 2011-02-24 13:05:31.000000000 +0000 document_standard.pt
< 2012-05-27 17:14:31.718 -rw-r--r-- 1 root root 6122 2011-02-24 13:05:31.000000000 +0000 event_portlet.pt
< 2012-05-27 17:14:31.718 -rw-r--r-- 1 root root 5704 2011-02-24 13:05:31.000000000 +0000 event_standard.pt
< 2012-05-27 17:14:31.718 -rw-r--r-- 1 root root 128 2011-02-24 13:05:31.000000000 +0000 fallback.pt
< 2012-05-27 17:14:31.718 -rw-r--r-- 1 root root 1531 2011-02-24 13:05:31.000000000 +0000 file_portlet.pt
< 2012-05-27 17:14:31.718 -rw-r--r-- 1 root root 839 2011-02-24 13:05:31.000000000 +0000 file_standard.pt
< 2012-05-27 17:14:31.718 -rw-r--r-- 1 root root 1811 2011-02-24 13:05:31.000000000 +0000 folder_portlet.pt
< 2012-05-27 17:14:31.718 -rw-r--r-- 1 root root 1319 2011-02-24 13:05:31.000000000 +0000 folder_standard.pt
< 2012-05-27 17:14:31.718 -rw-r--r-- 1 root root 1658 2011-02-24 13:05:31.000000000 +0000 image_portlet.pt
< 2012-05-27 17:14:31.718 -rw-r--r-- 1 root root 556 2011-02-24 13:05:31.000000000 +0000 image_standard.pt
< 2012-05-27 17:14:31.718 -rw-r--r-- 1 root root 1490 2011-02-24 13:05:31.000000000 +0000 link_portlet.pt
< 2012-05-27 17:14:31.718 -rw-r--r-- 1 root root 939 2011-02-24 13:05:31.000000000 +0000 link_standard.pt
< 2012-05-27 17:14:31.718 -rw-r--r-- 1 root root 2591 2011-02-24 13:05:31.000000000 +0000 newsitem_portlet.pt
< 2012-05-27 17:14:31.718 -rw-r--r-- 1 root root 1814 2011-02-24 13:05:31.000000000 +0000 newsitem_standard.pt
< 2012-05-27 17:14:31.718 -rw-r--r-- 1 root root 1202 2011-02-24 13:05:31.000000000 +0000 row_largeleft.pt
< 2012-05-27 17:14:31.718 -rw-r--r-- 1 root root 1204 2011-02-24 13:05:31.000000000 +0000 row_largeright.pt
< 2012-05-27 17:14:31.718 -rw-r--r-- 1 root root 1206 2011-02-24 13:05:31.000000000 +0000 row_standard.pt
< 2012-05-27 17:14:31.718 -rw-r--r-- 1 root root 4341 2011-02-24 13:05:31.000000000 +0000 topic_album.pt
< 2012-05-27 17:14:31.718 -rw-r--r-- 1 root root 2096 2011-02-24 13:05:31.000000000 +0000 topic_portlet.pt
< 2012-05-27 17:14:31.718 -rw-r--r-- 1 root root 1692 2011-02-24 13:05:31.000000000 +0000 topic_standard.pt
< 2012-05-27 17:14:31.750 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:31.750 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\Collage\content' and remote directory '/opt/Plone/boro/parts/instance/Products/Collage/content', mode = 1, params = 2
. 2012-05-27 17:14:31.750 Listing directory "/opt/Plone/boro/parts/instance/Products/Collage/content".
> 2012-05-27 17:14:31.750 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/Collage/content" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:31.859 total 32
< 2012-05-27 17:14:31.859 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:31.859 drwxr-xr-x 8 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:31.859 -rw-r--r-- 1 root root 585 2011-02-24 13:05:31.000000000 +0000 __init__.py
< 2012-05-27 17:14:31.859 -rw-r--r-- 1 root root 1903 2011-02-24 13:05:31.000000000 +0000 _alias.py
< 2012-05-27 17:14:31.859 -rw-r--r-- 1 root root 2663 2011-02-24 13:05:31.000000000 +0000 _collage.py
< 2012-05-27 17:14:31.859 -rw-r--r-- 1 root root 2025 2011-02-24 13:05:31.000000000 +0000 _column.py
< 2012-05-27 17:14:31.859 -rw-r--r-- 1 root root 1984 2011-02-24 13:05:31.000000000 +0000 _row.py
< 2012-05-27 17:14:31.859 -rw-r--r-- 1 root root 2915 2011-02-24 13:05:31.000000000 +0000 common.py
< 2012-05-27 17:14:32.046 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:32.046 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\Collage\i18n' and remote directory '/opt/Plone/boro/parts/instance/Products/Collage/i18n', mode = 1, params = 2
. 2012-05-27 17:14:32.046 Listing directory "/opt/Plone/boro/parts/instance/Products/Collage/i18n".
> 2012-05-27 17:14:32.046 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/Collage/i18n" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:32.156 total 48
< 2012-05-27 17:14:32.156 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:32.156 drwxr-xr-x 8 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:32.156 -rw-r--r-- 1 root root 3733 2011-02-24 13:05:31.000000000 +0000 collage-da.po
< 2012-05-27 17:14:32.156 -rwxr-xr-x 1 root root 3800 2011-02-24 13:05:31.000000000 +0000 collage-de.po
< 2012-05-27 17:14:32.156 -rw-r--r-- 1 root root 3771 2011-02-24 13:05:31.000000000 +0000 collage-en.po
< 2012-05-27 17:14:32.156 -rw-r--r-- 1 root root 4016 2011-02-24 13:05:31.000000000 +0000 collage-fr.po
< 2012-05-27 17:14:32.156 -rw-r--r-- 1 root root 1123 2011-02-24 13:05:31.000000000 +0000 collage-plone-da.po
< 2012-05-27 17:14:32.156 -rwxr-xr-x 1 root root 1093 2011-02-24 13:05:31.000000000 +0000 collage-plone-de.po
< 2012-05-27 17:14:32.156 -rw-r--r-- 1 root root 1411 2011-02-24 13:05:31.000000000 +0000 collage-plone-en.po
< 2012-05-27 17:14:32.156 -rw-r--r-- 1 root root 1414 2011-02-24 13:05:31.000000000 +0000 collage-plone-fr.po
< 2012-05-27 17:14:32.156 -rw-r--r-- 1 root root 1242 2011-02-24 13:05:31.000000000 +0000 collage-plone.pot
< 2012-05-27 17:14:32.156 -rw-r--r-- 1 root root 3030 2011-02-24 13:05:31.000000000 +0000 collage.pot
< 2012-05-27 17:14:32.375 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:32.390 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\Collage\profiles' and remote directory '/opt/Plone/boro/parts/instance/Products/Collage/profiles', mode = 1, params = 2
. 2012-05-27 17:14:32.390 Listing directory "/opt/Plone/boro/parts/instance/Products/Collage/profiles".
> 2012-05-27 17:14:32.390 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/Collage/profiles" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:32.484 total 12
< 2012-05-27 17:14:32.484 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:32.484 drwxr-xr-x 8 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:32.484 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 default
< 2012-05-27 17:14:32.703 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:32.703 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\Collage\profiles\default' and remote directory '/opt/Plone/boro/parts/instance/Products/Collage/profiles/default', mode = 1, params = 2
. 2012-05-27 17:14:32.703 Listing directory "/opt/Plone/boro/parts/instance/Products/Collage/profiles/default".
> 2012-05-27 17:14:32.703 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/Collage/profiles/default" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:32.812 total 44
< 2012-05-27 17:14:32.812 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:32.812 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:32.812 -rw-r--r-- 1 root root 463 2011-02-24 13:05:31.000000000 +0000 actions.xml
< 2012-05-27 17:14:32.812 -rw-r--r-- 1 root root 298 2011-02-24 13:05:31.000000000 +0000 cssregistry.xml
< 2012-05-27 17:14:32.812 -rw-r--r-- 1 root root 269 2011-02-24 13:05:31.000000000 +0000 factorytool.xml
< 2012-05-27 17:14:32.812 -rw-r--r-- 1 root root 295 2011-02-24 13:05:31.000000000 +0000 jsregistry.xml
< 2012-05-27 17:14:32.812 -rw-r--r-- 1 root root 380 2011-02-24 13:05:31.000000000 +0000 propertiestool.xml
< 2012-05-27 17:14:32.812 -rw-r--r-- 1 root root 246 2011-02-24 13:05:31.000000000 +0000 skins.xml
< 2012-05-27 17:14:32.812 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 types
< 2012-05-27 17:14:32.812 -rw-r--r-- 1 root root 655 2011-02-24 13:05:31.000000000 +0000 types.xml
< 2012-05-27 17:14:32.812 -rw-r--r-- 1 root root 383 2011-02-24 13:05:31.000000000 +0000 workflows.xml
< 2012-05-27 17:14:33.031 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:33.062 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\Collage\profiles\default\types' and remote directory '/opt/Plone/boro/parts/instance/Products/Collage/profiles/default/types', mode = 1, params = 2
. 2012-05-27 17:14:33.062 Listing directory "/opt/Plone/boro/parts/instance/Products/Collage/profiles/default/types".
> 2012-05-27 17:14:33.062 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/Collage/profiles/default/types" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:33.156 total 32
< 2012-05-27 17:14:33.156 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:33.156 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:33.156 -rw-r--r-- 1 root root 3359 2011-02-24 13:05:31.000000000 +0000 Collage.xml
< 2012-05-27 17:14:33.156 -rw-r--r-- 1 root root 2525 2011-02-24 13:05:31.000000000 +0000 CollageAlias.xml
< 2012-05-27 17:14:33.156 -rw-r--r-- 1 root root 2591 2011-02-24 13:05:31.000000000 +0000 CollageColumn.xml
< 2012-05-27 17:14:33.156 -rw-r--r-- 1 root root 2562 2011-02-24 13:05:31.000000000 +0000 CollageRow.xml
< 2012-05-27 17:14:33.156 -rw-r--r-- 1 root root 254 2011-02-24 13:05:31.000000000 +0000 Folder.xml
< 2012-05-27 17:14:33.156 -rw-r--r-- 1 root root 268 2011-02-24 13:05:31.000000000 +0000 Plone_Site.xml
< 2012-05-27 17:14:33.359 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:33.359 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\Collage\skins' and remote directory '/opt/Plone/boro/parts/instance/Products/Collage/skins', mode = 1, params = 2
. 2012-05-27 17:14:33.359 Listing directory "/opt/Plone/boro/parts/instance/Products/Collage/skins".
> 2012-05-27 17:14:33.375 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/Collage/skins" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:33.468 total 12
< 2012-05-27 17:14:33.468 drwxr-xr-x 3 root root 4096 2011-02-24 13:05:31.000000000 +0000 .
< 2012-05-27 17:14:33.468 drwxr-xr-x 8 root root 4096 2011-02-24 13:05:31.000000000 +0000 ..
< 2012-05-27 17:14:33.468 drwxr-xr-x 2 root root 4096 2011-02-24 13:05:31.000000000 +0000 Collage
< 2012-05-27 17:14:33.687 WinSCP: this is end-of-file:0
. 2012-05-27 17:14:33.687 Collecting synchronization list for local directory 'C:\Backups\BORO\Mirror\parts\instance\Products\Collage\skins\Collage' and remote directory '/opt/Plone/boro/parts/instance/Products/Collage/skins/Collage', mode = 1, params = 2
. 2012-05-27 17:14:33.687 Listing directory "/opt/Plone/boro/parts/instance/Products/Collage/skins/Collage".
> 2012-05-27 17:14:33.687 ls -la --full-time "/opt/Plone/boro/parts/instance/Products/Collage/skins/Collage" ; echo "WinSCP: this is end-of-file:$?"
< 2012-05-27 17:14:33.796 total 104
< 2012-05-27 17:14:33.796 drwx