summaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
authorspecial <special@e03df62e-2008-0410-955e-edbf42e46eb7>2007-06-26 06:05:39 +0000
committerspecial <special@e03df62e-2008-0410-955e-edbf42e46eb7>2007-06-26 06:05:39 +0000
commit97590f92393a62af0847728132970c38e334b687 (patch)
tree5edfb0886f991a5f20222c77d5a8ce253fe891c4 /make
parented7912c90fad5ba4a83946af9bf46a9bd3656f23 (diff)
Added a prompt for certificate expiry time to openssl cert generation. Patch by yell0w
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7411 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'make')
-rw-r--r--make/opensslcert.pm7
1 files changed, 5 insertions, 2 deletions
diff --git a/make/opensslcert.pm b/make/opensslcert.pm
index 8de7bd4b1..a4954e0be 100644
--- a/make/opensslcert.pm
+++ b/make/opensslcert.pm
@@ -10,8 +10,8 @@ sub make_openssl_cert()
open (FH, ">openssl.template");
my $org = promptstring_s("Please enter the organization name", "My IRC Network");
my $unit = promptstring_s("Please enter the unit Name", "Server Admins");
- my $state = promptstring_s("Please enter your state or locality name", "Alaska");
my $country = promptstring_s("Please enter your country (two letter code)", "US");
+ my $state = promptstring_s("Please enter your state or locality name", "Alaska");
my $city = promptstring_s("Please enter your city", "Factory Town");
my $email = promptstring_s("Please enter a contact email address", "oompa\@loompa.com");
my $commonname = promptstring_s("Please enter the common name (domain name) of the irc server", "example.inspircd.org");
@@ -25,7 +25,10 @@ $commonname
$email
__END__
close(FH);
-system("cat openssl.template | openssl req -x509 -nodes -newkey rsa:1024 -keyout key.pem -out cert.pem 2>/dev/null");
+
+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");
}