'man ovs-vsctl' mentions that ovs-vsctl can bootstrap itself by getting the certificate from the server. But the option was never parsed in the code.
Signed-off-by: Gurucharan Shetty <gshe...@nicira.com> --- utilities/ovs-vsctl.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/utilities/ovs-vsctl.c b/utilities/ovs-vsctl.c index e28634a..e177060 100644 --- a/utilities/ovs-vsctl.c +++ b/utilities/ovs-vsctl.c @@ -201,6 +201,7 @@ parse_options(int argc, char *argv[], struct shash *local_options) OPT_NO_SYSLOG, OPT_NO_WAIT, OPT_DRY_RUN, + OPT_BOOTSTRAP_CA_CERT, OPT_PEER_CA_CERT, OPT_LOCAL, OPT_RETRY, @@ -224,6 +225,7 @@ parse_options(int argc, char *argv[], struct shash *local_options) VLOG_LONG_OPTIONS, TABLE_LONG_OPTIONS, STREAM_SSL_LONG_OPTIONS, + {"bootstrap-ca-cert", required_argument, NULL, OPT_BOOTSTRAP_CA_CERT}, {"peer-ca-cert", required_argument, NULL, OPT_PEER_CA_CERT}, {NULL, 0, NULL, 0}, }; @@ -324,6 +326,10 @@ parse_options(int argc, char *argv[], struct shash *local_options) stream_ssl_set_peer_ca_cert_file(optarg); break; + case OPT_BOOTSTRAP_CA_CERT: + stream_ssl_set_ca_cert_file(optarg, true); + break; + case '?': exit(EXIT_FAILURE); -- 1.7.9.5 _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev