Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Fix ftp parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Jul 18, 2013
1 parent 2d44eaa commit 81af01b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dist/phing/deploy.xml
Expand Up @@ -51,21 +51,21 @@
user="${admin_user}"
password="${admin_password}"
action="create_repository"
params='--DISPLAY="ftp" --DRIVER=ftp --json_data={\"HOST\":\"${ws.ftp.host}\",\"PATH\":\"${ws.ftp.path}\",\"USER\":\"${ws.ftp.user}\",\"PASS\":\"${ws.ftp.password}\"}'/>
params='--DISPLAY="ftp" --DRIVER=ftp --json_data={\"FTP_HOST\":\"${ws.ftp.host}\",\"PATH\":\"${ws.ftp.path}\",\"FTP_USER\":\"${ws.ftp.user}\",\"FTP_PASS\":\"${ws.ftp.password}\"}'/>

<ajaxplorer_sdk
cliPath="${cliPath}"
user="${admin_user}"
password="${admin_password}"
action="create_repository"
params='--DISPLAY="sftp" --DRIVER=sftp --json_data={\"HOST\":\"${ws.sftp.host}\",\"PATH\":\"${ws.sftp.path}\",\"USER\":\"${ws.sftp.user}\",\"PASS\":\"${ws.sftp.password}\"}'/>
params='--DISPLAY="sftp" --DRIVER=sftp --json_data={\"SERV\":\"${ws.sftp.host}\",\"PATH\":\"${ws.sftp.path}\",\"USER\":\"${ws.sftp.user}\",\"PASS\":\"${ws.sftp.password}\"}'/>

<ajaxplorer_sdk
cliPath="${cliPath}"
user="${admin_user}"
password="${admin_password}"
action="create_repository"
params='--DISPLAY="webdav" --DRIVER=webdav --json_data={\"HOST\":\"${ws.webdav.host}\",\"URI\":\"${ws.webdav.uri}\",\"USER\":\"${ws.webdav.user}\",\"PASS\":\"${ws.webdav.password}\"}'/>
params='--DISPLAY="webdav" --DRIVER=webdav --json_data={\"HOST\":\"${ws.webdav.host}\",\"PATH\":\"${ws.webdav.uri}\",\"USER\":\"${ws.webdav.user}\",\"PASS\":\"${ws.webdav.password}\"}'/>

<!-- Some cleaning before accessing via HTTP -->
<delete file="${cliPath}/data/cache/i18n/en_plugins_messages.ser"/>
Expand Down

0 comments on commit 81af01b

Please sign in to comment.