-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #192 from jedwards4b/update_inputdata_server
remove anonymous ftp and gridftp, use wget
- Loading branch information
Showing
1 changed file
with
4 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,28 +7,16 @@ | |
<!-- inputdata_chksum.dat is found on the server in the directory above inputdata --> | ||
<!-- it will be searched for filename and chksum of each downloaded file. --> | ||
<!-- see the file ftp://ftp.cgd.ucar.edu/cesm/inputdata_chksum.dat for proper format. --> | ||
<server> | ||
<comment>grid ftp requires the globus-url-copy tool on the client side </comment> | ||
<protocol>gftp</protocol> | ||
<address>ftp://gridanon.cgd.ucar.edu:2811/cesm/inputdata/</address> | ||
<checksum>../inputdata_checksum.dat</checksum> | ||
</server> | ||
|
||
<server> | ||
<protocol>wget</protocol> | ||
<address>ftp://ftp.cgd.ucar.edu/cesm/inputdata/</address> | ||
<user>anonymous</user> | ||
<password>[email protected]</password> | ||
<address>https://ftp.cgd.ucar.edu/cesm/inputdata/</address> | ||
<checksum>../inputdata_checksum.dat</checksum> | ||
</server> | ||
|
||
<server> | ||
<comment> ftp requires the python package ftplib </comment> | ||
<protocol>ftp</protocol> | ||
<address>ftp.cgd.ucar.edu/cesm/inputdata</address> | ||
<user>anonymous</user> | ||
<password>[email protected]</password> | ||
<checksum>../inputdata_checksum.dat</checksum> | ||
<comment> wget access to subversion </comment> | ||
<protocol>wget</protocol> | ||
<address>https://svn-ccsm-inputdata.cgd.ucar.edu/trunk/inputdata/</address> | ||
</server> | ||
|
||
<server> | ||
|