From f2646c4e2ef1c4e29c170a875b2b60f855629d21 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Wed, 21 Jun 2017 10:46:28 +0200 Subject: [PATCH] Fix for debian --- Acme.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Acme.pm b/Acme.pm index adcc99e..e4637d7 100644 --- a/Acme.pm +++ b/Acme.pm @@ -33,11 +33,13 @@ our @EXPORT_OK = qw(VERSION); # Load dependancies use Carp qw(carp confess); use Date::Parse qw(str2time); +use DateTime; use Digest::SHA qw(sha256_base64); use Email::Valid; use File::Copy qw(copy); use File::Path qw(make_path); use File::Slurp qw(read_file write_file); +use File::stat qw(stat); use File::Temp; # qw( :seekable ); use IPC::System::Simple qw(capturex); use JSON qw(from_json to_json); @@ -72,7 +74,7 @@ use constant { ACME_PROD_DIR => 'https://acme-v01.api.letsencrypt.org/directory', # Version - VERSION => 'v0.8', + VERSION => 'v0.9', }; # User agent object -- 2.41.0