From da442e0be70bdd66a99b54d4383cfbf8d852637e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=EFc=20Gomez?= Date: Mon, 7 Jan 2008 15:54:51 +0100 Subject: [PATCH] bipgenconfig client_side_ssl_key option --- scripts/bipgenconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/bipgenconfig b/scripts/bipgenconfig index ad58e97..f37322c 100755 --- a/scripts/bipgenconfig +++ b/scripts/bipgenconfig @@ -46,6 +46,9 @@ my %optdesc = ( 'client_side_ssl' => { 'type' => 'b', 'adv' => 1, 'default' => 'true', 'optional' => 1, 'desc' => 'Do you want to enable client side SSL ?' }, + 'client_side_ssl_key' => { 'type' => 's', 'adv' => 1, 'optional' => 1, + 'default' => '', + 'desc' => 'Where is the bip.pem file (cert/key pair) ?' }, 'pid_file' => { 'type' => 's', 'adv' => 1, 'optional' => 1, 'default' => $bipdir . '/bip.pid', 'desc' => 'Where do you want the pidfile to be stored ?' }, @@ -216,6 +219,7 @@ my %optorder = ( 'ip' , 'port' , 'client_side_ssl' , + 'client_side_ssl_key' , 'pid_file' , undef, 'log' ,