Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

A profile definition for Server to Server transfer, from a ftp to a sftp server:

Code Block
 [ftptransfer_server_2_server]
 include                        = Keepass_DataBase_WithPassword
 file_spec                      = ^.*\.txt$
 operation                      = copy
 source_CredentialStore_KeyPath = sos/server/wilma.sos
 source_dir                     = /tmp/test/jade/out
 target_CredentialStore_KeyPath = sos/server/8of9.sos
 target_dir                     = $\{TEMP\}/jade/in 

In this example all files with the file name extension ".txt" should be transferred from the server "wilma" via ftp to the server 8of9 by sftp.

To start this with the command line client one must type

Code Block
languagebash

 jade.sh -settings=name_of_settings_file -profile=transfer_server_2_server

Profile fragments TBD

To make the profile more reusable and readable it is possible to reuse profiles snipets in the way like this:

...