diff options
Diffstat (limited to 'rhautoimport-nw')
-rwxr-xr-x | rhautoimport-nw | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/rhautoimport-nw b/rhautoimport-nw index 47c0281..e3f3dad 100755 --- a/rhautoimport-nw +++ b/rhautoimport-nw @@ -38,9 +38,11 @@ my $RSS_URL = "http://cba.fro.at/seriesrss/262514?c=Kfs2IoV2Wmd"; $XML::Feed::MULTIPLE_ENCLOSURES=1; my $RD_GROUP = "netwatcher"; my $PV_ID = '73'; +my $LAST_RUN = 0; if($#ARGV >= 0 && $ARGV[0] eq 'last') { - print "!!!This is the last attempt, there won't be a retry on error!!!\n" + print "!!!This is the last attempt, there won't be a retry on error!!!\n"; + $LAST_RUN = 1; } @@ -128,7 +130,7 @@ for my $entry ($feed->entries) { } if($uri eq "") { print "No Entry found from $bd - "; - if($#ARGV >= 0 && $ARGV[0] eq 'last') { + if($LAST_RUN) { print "giving up, manual import necessary!!!\n"; } else { print "will retry later\n"; |