2015-09-15 20:39:57 +00:00
|
|
|
module CommandHelpers
|
|
|
|
# Returns the markdown text for the general options usage.
|
|
|
|
def general_options_usage()
|
|
|
|
<<EOF
|
2015-11-18 22:29:52 +00:00
|
|
|
* `-address=<addr>`: The address of the Nomad server. Overrides the `NOMAD_ADDR`
|
|
|
|
environment variable if set. Defaults to `http://127.0.0.1:4646`.
|
2015-09-15 20:39:57 +00:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
end
|