pull/2447/head
Jens Steube 4 years ago
commit 6a3f0ef9ea

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

@ -1,4 +1,9 @@
#!/usr/bin/perl #!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict; use strict;
use warnings; use warnings;

@ -23,6 +23,7 @@ cpan install Authen::Passphrase::LANManager \
Crypt::ECB \ Crypt::ECB \
Crypt::Eksblowfish::Bcrypt \ Crypt::Eksblowfish::Bcrypt \
Crypt::GCrypt \ Crypt::GCrypt \
Crypt::Mode::CBC \
Crypt::Mode::ECB \ Crypt::Mode::ECB \
Crypt::MySQL \ Crypt::MySQL \
Crypt::OpenSSH::ChachaPoly \ Crypt::OpenSSH::ChachaPoly \
@ -50,11 +51,13 @@ cpan install Authen::Passphrase::LANManager \
Digest::SHA1 \ Digest::SHA1 \
Digest::SHA3 \ Digest::SHA3 \
Digest::SipHash \ Digest::SipHash \
Encode \
JSON \ JSON \
MIME::Base32 \ MIME::Base32 \
MIME::Base64 \ MIME::Base64 \
Net::DNS::RR::NSEC3 \ Net::DNS::RR::NSEC3 \
Net::DNS::SEC \ Net::DNS::SEC \
POSIX \
Text::Iconv \ Text::Iconv \
; ;
@ -66,6 +69,15 @@ pip2 uninstall -y pycryptodome
ERRORS=$((ERRORS+$?)) ERRORS=$((ERRORS+$?))
php --version > /dev/null 2> /dev/null
if [ "$?" -ne 0 ]
then
echo '[ ERROR ] php must be installed for some unit tests'
ERRORS=$((ERRORS+1))
fi
echo echo
if [ $ERRORS -eq 0 ]; then if [ $ERRORS -eq 0 ]; then
echo '[ OK ] All commands were successful' echo '[ OK ] All commands were successful'

Loading…
Cancel
Save