aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2018-07-17 11:18:37 +0300
committerSergey Poznyakoff <gray@gnu.org>2018-07-17 11:24:21 +0300
commit6cb0e3c6b9c7b148081a707e905635d4cfd963a5 (patch)
tree20abe6cf7bd35d4375e1b16278032bed902ffe69
parentc4e539cf7b31c8938ea471419e42f79a87cfb4ea (diff)
downloadacmeman-6cb0e3c6b9c7b148081a707e905635d4cfd963a5.tar.gz
acmeman-6cb0e3c6b9c7b148081a707e905635d4cfd963a5.tar.bz2
Version 1.06v1.06
* lib/App/Acmeman/Source/Apache.pm (probe): Prefer apachectl over httpd (follow-up from Apache::Defaults) * acmeman: Version 1.06 * Changes: Update
-rw-r--r--Changes6
-rwxr-xr-xacmeman4
-rw-r--r--lib/App/Acmeman/Source/Apache.pm2
3 files changed, 9 insertions, 3 deletions
diff --git a/Changes b/Changes
index b6662a7..4089093 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,9 @@
11.06 2018-07-17
2
3* New source: "file"
4* Simplify DNS code
5* Improve detection of Apache default settings
6
11.05 2018-04-17 71.05 2018-04-17
2 8
3* null source 9* null source
diff --git a/acmeman b/acmeman
index 0a51cdb..5a8cf37 100755
--- a/acmeman
+++ b/acmeman
@@ -33,14 +33,14 @@ use Socket qw(inet_ntoa);
33use Sys::Hostname; 33use Sys::Hostname;
34use Pod::Usage; 34use Pod::Usage;
35use Pod::Man; 35use Pod::Man;
36use Getopt::Long qw(:config gnu_getopt no_ignore_case); 36use Getopt::Long qw(:config gnu_getopt no_ignore_case auto_version);
37use POSIX qw(strftime time floor); 37use POSIX qw(strftime time floor);
38use App::Acmeman::Config; 38use App::Acmeman::Config;
39use App::Acmeman::Domain qw(:files); 39use App::Acmeman::Domain qw(:files);
40use Data::Dumper; 40use Data::Dumper;
41use Text::ParseWords; 41use Text::ParseWords;
42 42
43our $VERSION = '1.05'; 43our $VERSION = '1.06';
44 44
45=head1 NAME 45=head1 NAME
46 46
diff --git a/lib/App/Acmeman/Source/Apache.pm b/lib/App/Acmeman/Source/Apache.pm
index c84aea6..2041bb1 100644
--- a/lib/App/Acmeman/Source/Apache.pm
+++ b/lib/App/Acmeman/Source/Apache.pm
@@ -266,7 +266,7 @@ EOT
266 266
267sub probe { 267sub probe {
268 my ($self, @servlist) = @_; 268 my ($self, @servlist) = @_;
269 @servlist = qw(/usr/sbin/httpd /usr/sbin/apache2) 269 @servlist = qw(/usr/sbin/apachectl /usr/sbin/httpd /usr/sbin/apache2)
270 unless (@servlist); 270 unless (@servlist);
271 open(my $nullout, '>', File::Spec->devnull); 271 open(my $nullout, '>', File::Spec->devnull);
272 open(my $nullin, '<', File::Spec->devnull); 272 open(my $nullin, '<', File::Spec->devnull);

Return to:

Send suggestions and report system problems to the System administrator.