diff --git a/lib/mk-ca-bundle.pl b/lib/mk-ca-bundle.pl index d054f0044..07f092001 100755 --- a/lib/mk-ca-bundle.pl +++ b/lib/mk-ca-bundle.pl @@ -75,20 +75,22 @@ my $crt = $ARGV[0] || 'ca-bundle.crt'; my $txt = substr($url, rindex($url, '/') + 1); $txt =~ s/\?.*//; -if (!$opt_n || !-e $txt) { +my $resp; + +unless ($opt_n and -e $txt) { print "Downloading '$txt' ...\n" if (!$opt_q); + my $ua = new LWP::UserAgent(agent => "$0/$version"); - my $req = new HTTP::Request('GET', $url); - my $res = $ua->request($req); - if ($res->is_success) { - open(TXT,">$txt") or die "Couldn't open $txt: $!"; - print TXT $res->content . "\n"; - close(TXT) or die "Couldn't close $txt: $!"; - } else { - die $res->status_line; - } + $resp = $ua->mirror($url, 'certdata.txt'); } +if ($resp && $resp->code eq '304') { + print "Not modified\n" unless $opt_q; + exit 0; +} + +my $currentdate = scalar gmtime($resp ? $resp->last_modified : (stat($txt))[9]); + if ($opt_b && -e $crt) { my $bk = 1; while (-e "$crt.~${bk}~") { @@ -98,13 +100,12 @@ if ($opt_b && -e $crt) { } my $format = $opt_t ? "plain text and " : ""; -my $currentdate = scalar gmtime() . " UTC"; open(CRT,">$crt") or die "Couldn't open $crt: $!"; print CRT <