diff options
Diffstat (limited to 'make')
-rw-r--r-- | make/opensslcert.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/opensslcert.pm b/make/opensslcert.pm index 1de34eef6..5c6689dc7 100644 --- a/make/opensslcert.pm +++ b/make/opensslcert.pm @@ -44,7 +44,7 @@ __END__ close(FH); my $time = promptstring_s("Please enter the number of days that this certificate is valid for","365"); - + system("cat openssl.template | openssl req -x509 -nodes -newkey rsa:1024 -keyout key.pem -out cert.pem -days $time 2>/dev/null"); system("openssl dhparam -out dhparams.pem 1024"); unlink("openssl.template"); |