]> 91.132.146.200 Git - aranea.git/commitdiff
moved last.run file
authorBanana <mail@bananas-playground.net>
Mon, 11 Nov 2024 15:50:45 +0000 (16:50 +0100)
committerBanana <mail@bananas-playground.net>
Mon, 11 Nov 2024 15:50:45 +0000 (16:50 +0100)
Signed-off-by: Banana <mail@bananas-playground.net>
crawler/aranea-runner
crawler/cleanup.pl
crawler/fetch.pl
crawler/parse-results.pl

index 7928acbc8b1f82f9397906ad01ef55bbb12f68b1..c5cc4f1ada62849687d7ab209806bc7882c59e59 100755 (executable)
@@ -30,7 +30,7 @@ COMMANDS["cleanup"]="fetch.pl"
 
 CWD=$(pwd);
 PIDFILE="$CWD/log/aranea.pid";
-LASTRUNFILE="$CWD/last.run";
+LASTRUNFILE="$CWD/log/last.run";
 TORUN="cleanup";
 
 if [ ! -e "$PIDFILE" ]; then
index 41286c562255e595fa003348d7c19cd353a532a6..2b7a89364903945e27ef834c5edc57fd6fd4b6cd 100644 (file)
@@ -143,7 +143,7 @@ sayYellow "Remove invalid urls done";
 addToStats($dbh, "cleanup");
 
 # write itself to the last run file
-open(my $fh, '>:encoding(UTF-8)', "last.run") or die "Could not open file 'last.run' $!";
+open(my $fh, '>:encoding(UTF-8)', "log/last.run") or die "Could not open file 'log/last.run' $!";
 print $fh "cleanup";
 close($fh);
 
index 72a334bac5bfb3c0243cd9eb910227b83c8b3e60..c0b2bbc9c5c290cd3801f165e31129fa5fe1bf95 100644 (file)
@@ -152,7 +152,7 @@ addToStats($dbh, 'fetchsuccess', $allFetched, $allFetched);
 $dbh->commit();
 
 # write itself to the last run file
-open(my $fh, '>:encoding(UTF-8)', "last.run") or die "Could not open file 'last.run' $!";
+open(my $fh, '>:encoding(UTF-8)', "log/last.run") or die "Could not open file 'log/last.run' $!";
 print $fh "fetch";
 close($fh);
 
index 8c97a1412e43a836cf7e274f03a62a5458bcb6b6..47d217a9d2a7e3d85a3d139b278d7d2c9481725e 100644 (file)
@@ -137,7 +137,7 @@ addToStats($dbh, 'parse');
 $dbh->commit();
 
 # write itself to the last run file
-open(my $fh, '>:encoding(UTF-8)', "last.run") or die "Could not open file 'last.run' $!";
+open(my $fh, '>:encoding(UTF-8)', "log/last.run") or die "Could not open file 'log/last.run' $!";
 print $fh "parse";
 close($fh);