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' ,