]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0120.data.reactor_SendFile.sql
Stamping upgrade scripts for Vandelay default match set, with minor adjustments
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0120.data.reactor_SendFile.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0120'); -- atz
4
5 INSERT INTO action_trigger.reactor (module,description) VALUES
6 (   'SendFile',
7     oils_i18n_gettext(
8         'SendFile',
9         'Build and transfer a file to a remote server.  Required parameter "remote_host" specifying target server.  Optional parameters: remote_user, remote_password, remote_account, port, type (FTP, SFTP or SCP), and debug.',
10         'atreact',
11         'description'
12     )
13 );
14
15 COMMIT;
16