Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Nigel Kukard
awit-certmaster
Commits
b8e5f9ee
Commit
b8e5f9ee
authored
Jan 22, 2017
by
Nigel Kukard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed issue with apache default sites being picked up
parent
432103cf
Pipeline
#916
passed with stages
in 1 minute and 50 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
6 deletions
+12
-6
awit-certmaster
awit-certmaster
+12
-6
No files found.
awit-certmaster
View file @
b8e5f9ee
...
...
@@ -47,7 +47,7 @@ package AWIT::CertMaster;
use
strict
;
use
warnings
;
our
$
VERSION
=
'1.0
4
'
;
our
$
VERSION
=
'1.0
5
'
;
BEGIN
{
...
...
@@ -237,10 +237,16 @@ sub webserverCheckApache
foreach
my
$
vhostName
(
keys
%{$
vhostConfig
})
{
my
$
vhost
=
$
vhostConfig
->{$
vhostName
};
#
Skip
over
system
configurations
next
if
($
vhost
=~
/
default
(|-
ssl
)/);
#
Skip
over
backup
files
next
if
($
vhost
=~
/\.
bak
$/);
#
Skip
over
a
few
things
if
(
#
Skip
over
system
configurations
$
vhostName
=~
/
default
(|-
ssl
)/
||
#
Skip
over
backup
files
$
vhostName
=~
/\.
bak
$/
)
{
delete
($
vhostConfig
->{$
vhostName
});
next
;
}
$
self
->
logger
(
"INFO"
,
"APACHE: Processing vhost '%s'"
,$
vhostName
);
#
Open
config
file
...
...
@@ -1776,7 +1782,7 @@ use Getopt::Long;
my $NAME = "
AWIT
-
CertMaster
";
our $VERSION = "
1.1.
7
";
our $VERSION = "
1.1.
8
";
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment