Skip to content

Commit

Permalink
fix missing documentation of ovn-ic arguments
Browse files Browse the repository at this point in the history
the arguments for the interconnect database where missing.

Signed-off-by: Felix Huettner <felix.huettner@mail.schwarz>
Signed-off-by: Dumitru Ceara <dceara@redhat.com>
(cherry picked from commit 44beec2)
  • Loading branch information
felixhuettner authored and dceara committed Aug 14, 2023
1 parent cdcd80f commit bea8d47
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ic/ovn-ic.c
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,16 @@ Options:\n\
(default: %s)\n\
--ovnsb-db=DATABASE connect to ovn-sb database at DATABASE\n\
(default: %s)\n\
--ic-nb-db=DATABASE connect to ovn-ic-nb database at DATABASE\n\
(default: %s)\n\
--ic-sb-db=DATABASE connect to ovn-ic-sb database at DATABASE\n\
(default: %s)\n\
--unixctl=SOCKET override default control socket name\n\
-h, --help display this help message\n\
-o, --options list available options\n\
-V, --version display version information\n\
", program_name, program_name, default_nb_db(), default_sb_db());
", program_name, program_name, default_nb_db(), default_sb_db(),
default_ic_nb_db(), default_ic_sb_db());
daemon_usage();
vlog_usage();
stream_usage("database", true, true, false);
Expand Down

0 comments on commit bea8d47

Please sign in to comment.