summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2020-09-26 23:32:09 +0100
committerSadie Powell <sadie@witchery.services>2020-09-26 23:34:03 +0100
commitb64fe8320ecbcc3f6099a3c0ae1b2739447bfc76 (patch)
tree927a8ad5bc5c1098f42db2c185cfe1e93d8d6a9a /tools
parentd0bb6bd79a7909b498ad018b4a9f6f90d4e89787 (diff)
Store generated SSL certificates in the .configure directory.
Co-Authored-By: Nicole Kleinhoff <ilbelkyr@shalture.org>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/genssl20
1 files changed, 17 insertions, 3 deletions
diff --git a/tools/genssl b/tools/genssl
index 930f4b1d7..f4c38fd2e 100755
--- a/tools/genssl
+++ b/tools/genssl
@@ -31,10 +31,18 @@ use File::Temp();
# IMPORTANT: This script has to be able to run by itself so that it can be used
# by binary distributions where the make/console.pm module will not
# be available!
+eval {
+ use File::Basename qw(dirname);
+ use FindBin qw($RealDir);
+
+ use lib dirname $RealDir;
+ require make::console;
+ make::console->import();
+};
sub prompt($$) {
my ($question, $default) = @_;
- return prompt_string(1, $question, $default) if eval 'use File::Basename; use FindBin; use lib dirname($FindBin::RealDir); use make::console; 1';
+ return prompt_string(1, $question, $default) if defined main->can('prompt_string');
say $question;
print "[$default] => ";
chomp(my $answer = <STDIN>);
@@ -42,8 +50,8 @@ sub prompt($$) {
return $answer ? $answer : $default;
}
-if ($#ARGV != 0 || $ARGV[0] !~ /^(?:auto|gnutls|openssl)$/i) {
- say STDERR "Usage: $0 <auto|gnutls|openssl>";
+if (scalar @ARGV < 1 || $ARGV[0] !~ /^(?:auto|gnutls|openssl)$/i) {
+ say STDERR "Usage: $0 <auto|gnutls|openssl> [SSL-DIR]";
exit 1;
}
@@ -75,6 +83,12 @@ if ($tool eq 'auto') {
exit 1;
}
+# Output to the cwd unless an SSL directory is specified.
+if (scalar @ARGV > 1 && !chdir $ARGV[1]) {
+ say STDERR "Unable to change the working directory to $ARGV[1]: $!.";
+ exit 1;
+}
+
# Harvest information needed to generate the certificate.
my $common_name = prompt('What is the hostname of your server?', 'irc.example.com');
my $email = prompt('What email address can you be contacted at?', 'example@example.com');