ftp cannot put full pathnames, cd to dir instead
[Digitiz.git] / README
1 digitiz-xfer package
2
3 Copyright (c) 2000 Ivan Kohler
4 Copyright (c) 2000 Digitiz-it!
5 All rights reserved.
6 This program is free software; you can redistribute it and/or modify it under
7 the same terms as Perl itself.
8
9 Installation instructions:
10
11 Install Mail::Mailer, Date::Format, Net::FTP and String::ShellQuote from CPAN.
12 Install Net::SSH, Net::SCP and Digitiz_It::SKU supplied with this distribution.
13
14 Copy digitiz-xfer.conf to the /etc directory, and edit the values to taste.
15
16 Run digitiz-xfer.
17
18 Important note on usage: While digitiz-xfer is running, make sure to place
19 files in the $source_directory atomicly; in other words, *don't do:
20
21         cp /some/file /opt/media/staging # NO!
22
23 but instead do:
24
25         cp /some/file /opt/media/tmpdir
26         mv /opt/media/tmpdir/file /opt/media/staging/
27
28 (important: /opt/media/tmpdir and /opt/media/staging must be on the *same
29 filesystem*)
30
31 `mv' on the same filesystem is an atomic operation, but a `cp' or `mv' from
32 a different filesystem isn't.
33