summaryrefslogtreecommitdiff
path: root/rhimport-ra
diff options
context:
space:
mode:
Diffstat (limited to 'rhimport-ra')
-rwxr-xr-xrhimport-ra11
1 files changed, 10 insertions, 1 deletions
diff --git a/rhimport-ra b/rhimport-ra
index bacfce4..84097f0 100755
--- a/rhimport-ra
+++ b/rhimport-ra
@@ -48,6 +48,10 @@ binmode(STDIN, ":utf8");
binmode(STDOUT, ":utf8");
binmode(STDERR, ":utf8");
+if($#ARGV >= 0 && $ARGV[0] eq 'last') {
+ print "!!!This is the last attempt, there won't be a retry on error!!!\n"
+}
+
my $user = `/usr/bin/id -un`;
$user =~ s/\n//;
my $group = "RadioATTAC";
@@ -118,7 +122,12 @@ for my $entry ($feed->entries) {
}
}
if($file eq "" || !(-e "$file")) {
- print "No Entry found from $bd or download error - will retry later\n";
+ print "No Entry found from $bd or download error - ";
+ if($#ARGV >= 0 && $ARGV[0] eq 'last') {
+ print "giving up, manual import necessary!!!\n";
+ } else {
+ print "will retry later\n";
+ }
exit 1;
}