diff options
author | ivan <ivan> | 2000-08-26 06:01:05 +0000 |
---|---|---|
committer | ivan <ivan> | 2000-08-26 06:01:05 +0000 |
commit | d72ca1a8a0f612a09077266f510bc53642d1513a (patch) | |
tree | 5f60dac18d06e7088ba38152f084538b9045200d /README |
importDIGITIZ_0-1
Diffstat (limited to 'README')
-rw-r--r-- | README | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -0,0 +1,33 @@ +digitiz-xfer package + +Copyright (c) 2000 Ivan Kohler +Copyright (c) 2000 Digitiz-it! +All rights reserved. +This program is free software; you can redistribute it and/or modify it under +the same terms as Perl itself. + +Installation instructions: + +Install Mail::Mailer, Date::Format, Net::FTP and String::ShellQuote from CPAN. +Install Net::SSH, Net::SCP and Digitiz_It::SKU supplied with this distribution. + +Copy digitiz-xfer.conf to the /etc directory, and edit the values to taste. + +Run digitiz-xfer. + +Important note on usage: While digitiz-xfer is running, make sure to place +files in the $source_directory atomicly; in other words, *don't do: + + cp /some/file /opt/media/staging # NO! + +but instead do: + + cp /some/file /opt/media/tmpdir + mv /opt/media/tmpdir/file /opt/media/staging/ + +(important: /opt/media/tmpdir and /opt/media/staging must be on the *same +filesystem*) + +`mv' on the same filesystem is an atomic operation, but a `cp' or `mv' from +a different filesystem isn't. + |