From ca3ee5552146914eb2c5a0a810ceb49fe09727a7 Mon Sep 17 00:00:00 2001 From: Michael RICOIS Date: Thu, 19 Nov 2015 15:25:31 +0000 Subject: [PATCH] Petite correction --- README | 6 ++---- fileRead.php | 2 +- trigger.php | 2 +- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/README b/README index d9779a1..2a5b4ac 100644 --- a/README +++ b/README @@ -23,6 +23,7 @@ Configuration pour les fichiers en entrées Send Options list (in) ---------------------- +- FilterName - Filtre par nom de prestation (true) ou par nom défini - CopyAddDate - Copy file and add a timestamp to the end of the filename - CopyDeleteAfter - After copying the file delete it in repository - RunWithEndFile - Only execute action when we receive file with extension .fin or .end @@ -30,9 +31,7 @@ Send Options list (in) - Route - For each Route options (cp, ftp, sftp, mail) cp => realpath of dir ftp - sftp mail -- FilterName - Filtre par nom de prestation (true) ou par nom défini Recv Options list (out) ----------------------- @@ -40,7 +39,6 @@ Recv Options list (out) Tck Options list (Check Transfert - use with CFT and other transfert mode) ------------------------------------------------ -ALTER TABLE `flux_fileout` ADD `transfertDate` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER `depotDateRead`; Envoi dans le repo du client fichier *.tck Recherche du fichier dans la table des flux et remplissage marqueur transfertDate @@ -57,7 +55,7 @@ Exemple surveillance retour par autre programme de transmission $fluxBasePath IN_CLOSE_WRITE php /home/batchFlux/fileTck.php --file $@/$# >> /home/log/tck.log 2>&1 Attention, une seule entrée de repertoire peut être saisie dans la incrontab. -fileSend a été prévue pour faire gérer correctement les extension tck +fileSend a été prévue pour gérer correctement les extension tck Sinon préférer l'utilisation de trigger.php $fluxBasePath IN_CLOSE_WRITE,IN_ACCESS,IN_DELETE,IN_NO_LOOP /home/batchFlux/trigger.php --file $@/$# --event $% diff --git a/fileRead.php b/fileRead.php index 84c0a49..effe723 100644 --- a/fileRead.php +++ b/fileRead.php @@ -35,7 +35,7 @@ try { // --- Usage if( isset($opts->help) || count($opts->getOptions())==0 ) { - echo "Execute basic action when a customer send a file.\n"; + echo "Execute basic action when a customer read a file.\n"; echo $opts->getUsageMessage(); exit; } diff --git a/trigger.php b/trigger.php index 702efa4..8bc43cf 100644 --- a/trigger.php +++ b/trigger.php @@ -51,7 +51,7 @@ switch($opts->event) } else { passthru(__DIR__ . '/fileSend.php --file '.$opts->file.' >> /home/log/send.log 2>&1'); } - break + break; case 'IN_ACCESS': passthru(__DIR__ . '/fileRead.php --file '.$opts->file.' >> /home/log/read.log 2>&1'); break;