1 |
brianr |
1.1 |
diff -ruN smeserver-letsencrypt-0.5.old/root/etc/e-smith/templates/etc/dehydrated/domains.txt/10Domains smeserver-letsencrypt-0.5/root/etc/e-smith/templates/etc/dehydrated/domains.txt/10Domains |
2 |
|
|
--- smeserver-letsencrypt-0.5.old/root/etc/e-smith/templates/etc/dehydrated/domains.txt/10Domains 2018-06-18 17:14:46.000000000 +0200 |
3 |
|
|
+++ smeserver-letsencrypt-0.5/root/etc/e-smith/templates/etc/dehydrated/domains.txt/10Domains 2018-06-19 18:11:48.982068638 +0200 |
4 |
|
|
@@ -88,13 +88,13 @@ |
5 |
|
|
my $hostname = $fqdn; |
6 |
|
|
$hostname =~ s/\..*//; |
7 |
|
|
|
8 |
|
|
- print "$hostname\n"; |
9 |
|
|
+ # print "$hostname\n"; |
10 |
|
|
|
11 |
|
|
# Lets get the domain name |
12 |
|
|
my $domainname = $fqdn; |
13 |
|
|
$domainname =~ s/.*?\.//; |
14 |
|
|
|
15 |
|
|
- print "$domainname\n"; |
16 |
|
|
+ # print "$domainname\n"; |
17 |
|
|
|
18 |
|
|
# is the domain name from the hosts file |
19 |
|
|
# the same as that in the domains file ? |
20 |
|
|
@@ -108,7 +108,7 @@ |
21 |
|
|
my $hostOverride = $configDB->get_prop( 'letsencrypt', 'hostOverride' ) |
22 |
|
|
|| 'disabled'; |
23 |
|
|
|
24 |
|
|
- print "Override $hostOverride"; |
25 |
|
|
+ # print "Override $hostOverride"; |
26 |
|
|
|
27 |
|
|
if ( $hostOverride eq 'yes' ) { |
28 |
|
|
$OUT .= "$fqdn " unless $DomainName eq $fqdn; |
29 |
|
|
@@ -116,7 +116,7 @@ |
30 |
|
|
|
31 |
|
|
elsif ( $type eq 'Self' ) { |
32 |
|
|
|
33 |
|
|
- print "Here: $fqdn $type\n"; |
34 |
|
|
+ # print "Here: $fqdn $type\n"; |
35 |
|
|
$OUT .= "$fqdn " unless $DomainName eq $fqdn; |
36 |
|
|
} |
37 |
|
|
|