summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
0534a0d)
Do not remove extra certificate anymore
write_file($file, $content);
}
write_file($file, $content);
}
- # Remove first multi-line jump
- $content =~ s/\n\n/\n/;
+ # Write to raw cert file
+ write_file($self->{domain}{cert}.'.raw', $content);
+
+ # Remove multi-line jump
+ $content =~ s/\n\n/\n/s;
# Remove ISRG Root X1 certificate signed by DST Root CA X3 present after second multi-line jump
# Remove ISRG Root X1 certificate signed by DST Root CA X3 present after second multi-line jump
- $content =~ s/\n\n.*//s;
+ #$content =~ s/\n\n.*//s;
# Remove trailing line jump
chomp $content;
# Remove trailing line jump
chomp $content;