Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

Commit

Permalink
Add eucalyptus-cloud option to set multicast address (typo) - EUCA-11979
Browse files Browse the repository at this point in the history
  • Loading branch information
sjones4 committed Feb 1, 2016
1 parent 4dbbb0e commit 3e11fb9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion clc/modules/bootstrap/src/main/native/arguments.ggo.in
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ option "upgrade-old-version" - "Upgrade from specified version."
option "upgrade-old-dir" - "Upgrade from specified directory." string typestr="VERSION" no dependon="upgrade" hidden
option "upgrade-force" - "Skip version check to force upgrade to run again." flag off dependon="upgrade" hidden
option "bind-addr" i "Specifying this option causes eucalyptus-cloud to only bind the specified local addresses. The default behaviour is to listen on the any address while determining the user facing local address based on default route and netmask size." string typestr="HOSTNAME" optional multiple
option "mcast-addr" - "Multicast address to use for group memebership" string typestr="HOSTNAME" optional no
option "mcast-addr" - "Multicast address to use for group membership" string typestr="HOSTNAME" optional no
option "bootstrap-host" b "Host to be used for bootstrapping group membership. Many can be provided. Note this should only be necessary when UDP multicast is not available." string typestr="HOSTNAME" optional multiple
option "force-remote-bootstrap" - "Force the system to boot as a remote component." flag off hidden

Expand Down
4 changes: 2 additions & 2 deletions clc/modules/bootstrap/src/main/native/eucalyptus-opts.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const char *eucalyptus_opts_full_help[] = {
" --upgrade-old-dir=VERSION Upgrade from specified directory.",
" --upgrade-force Skip version check to force upgrade to run \n again. (default=off)",
" -i, --bind-addr=HOSTNAME Specifying this option causes eucalyptus-cloud \n to only bind the specified local addresses. \n The default behaviour is to listen on the any \n address while determining the user facing \n local address based on default route and \n netmask size.",
" --mcast-addr=HOSTNAME Multicast address to use for group memebership",
" --mcast-addr=HOSTNAME Multicast address to use for group membership",
" -b, --bootstrap-host=HOSTNAME Host to be used for bootstrapping group \n membership. Many can be provided. Note this \n should only be necessary when UDP multicast \n is not available.",
" --force-remote-bootstrap Force the system to boot as a remote component. \n (default=off)",
" -D, --define=STRING Set system properties.",
Expand Down Expand Up @@ -1584,7 +1584,7 @@ arguments_internal (
goto failure;

}
/* Multicast address to use for group memebership. */
/* Multicast address to use for group membership. */
else if (strcmp (long_options[option_index].name, "mcast-addr") == 0)
{

Expand Down
6 changes: 3 additions & 3 deletions clc/modules/bootstrap/src/main/native/eucalyptus-opts.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ struct eucalyptus_opts
unsigned int bind_addr_min; /**< @brief Specifying this option causes eucalyptus-cloud to only bind the specified local addresses. The default behaviour is to listen on the any address while determining the user facing local address based on default route and netmask size.'s minimum occurreces */
unsigned int bind_addr_max; /**< @brief Specifying this option causes eucalyptus-cloud to only bind the specified local addresses. The default behaviour is to listen on the any address while determining the user facing local address based on default route and netmask size.'s maximum occurreces */
const char *bind_addr_help; /**< @brief Specifying this option causes eucalyptus-cloud to only bind the specified local addresses. The default behaviour is to listen on the any address while determining the user facing local address based on default route and netmask size. help description. */
char * mcast_addr_arg; /**< @brief Multicast address to use for group memebership. */
char * mcast_addr_orig; /**< @brief Multicast address to use for group memebership original value given at command line. */
const char *mcast_addr_help; /**< @brief Multicast address to use for group memebership help description. */
char * mcast_addr_arg; /**< @brief Multicast address to use for group membership. */
char * mcast_addr_orig; /**< @brief Multicast address to use for group membership original value given at command line. */
const char *mcast_addr_help; /**< @brief Multicast address to use for group membership help description. */
char ** bootstrap_host_arg; /**< @brief Host to be used for bootstrapping group membership. Many can be provided. Note this should only be necessary when UDP multicast is not available.. */
char ** bootstrap_host_orig; /**< @brief Host to be used for bootstrapping group membership. Many can be provided. Note this should only be necessary when UDP multicast is not available. original value given at command line. */
unsigned int bootstrap_host_min; /**< @brief Host to be used for bootstrapping group membership. Many can be provided. Note this should only be necessary when UDP multicast is not available.'s minimum occurreces */
Expand Down

0 comments on commit 3e11fb9

Please sign in to comment.