summaryrefslogtreecommitdiff
path: root/tutorial
diff options
context:
space:
mode:
authorTimothy Redaelli <tredaelli@redhat.com>2018-08-09 20:02:02 +0200
committerBen Pfaff <blp@ovn.org>2018-08-10 11:16:59 -0700
commitd7526b836f8639864a4810a0185e4b30723decc9 (patch)
tree6b7eaf08c3c1a406cf7ff7769476e8622629b98c /tutorial
parent48745e75b3583322ac87fc7c4b6a10bb3c169446 (diff)
downloadopenvswitch-d7526b836f8639864a4810a0185e4b30723decc9.tar.gz
ovs-sandbox: Generate the SSL keys using the default key length
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 <tredaelli@redhat.com> Signed-off-by: Ben Pfaff <blp@ovn.org> Tested-by: Maxime Coquelin <maxime.coquelin@redhat.com>
Diffstat (limited to 'tutorial')
-rwxr-xr-xtutorial/ovs-sandbox8
1 files changed, 4 insertions, 4 deletions
diff --git a/tutorial/ovs-sandbox b/tutorial/ovs-sandbox
index 62ec537e8..7a5ab5f75 100755
--- a/tutorial/ovs-sandbox
+++ b/tutorial/ovs-sandbox
@@ -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