Skip to content

Commit

Permalink
ovs-sandbox: Generate the SSL keys using the default key length
Browse files Browse the repository at this point in the history
This commit removes the explicit set of 1024-bit RSA keys when the RSA
keys are generated on "make sandbox" and so the default (2048-bit) is used.

Signed-off-by: Timothy Redaelli <[email protected]>
Signed-off-by: Ben Pfaff <[email protected]>
Tested-by: Maxime Coquelin <[email protected]>
  • Loading branch information
drizzt authored and blp committed Aug 10, 2018
1 parent 48745e7 commit d7526b8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tutorial/ovs-sandbox
Original file line number Diff line number Diff line change
Expand Up @@ -390,11 +390,11 @@ if $ovn; then

if [ "$HAVE_OPENSSL" = yes ]; then
OVS_PKI="run ovs-pki --dir=$sandbox/pki --log=$sandbox/ovs-pki.log"
$OVS_PKI -B 1024 init
$OVS_PKI -B 1024 req+sign ovnsb switch
$OVS_PKI -B 1024 req+sign ovnnb switch
$OVS_PKI init
$OVS_PKI req+sign ovnsb switch
$OVS_PKI req+sign ovnnb switch
for i in $(seq $n_controllers); do
$OVS_PKI -B 1024 -u req+sign chassis-$i switch
$OVS_PKI -u req+sign chassis-$i switch
done
fi
fi
Expand Down

0 comments on commit d7526b8

Please sign in to comment.