1
0
mirror of https://github.com/drwetter/testssl.sh.git synced 2025-02-03 22:31:15 +01:00
testssl.sh/t/10_ca_hashes_up_to_date.t
2016-07-25 09:47:24 +02:00

9 lines
264 B
Perl
Executable File

#!/usr/bin/env perl
use strict;
use Test::More tests => 1;
my $newer_bundles=`find etc/*.pem -newer etc/ca_hashes.txt`;
is($newer_bundles,"","List of CA bundles newer then etc/ca_hashes.txt should be empty. If not run utils/create_ca_hashes.sh");
done_testing;