blob: 15c9ec0506b9e767fbb87b00d8adbb13f9f4fff4 [file] [log] [blame]
Todd Wang0d12d712014-10-06 17:25:41 -07001// This file was auto-generated via go generate.
2// DO NOT UPDATE MANUALLY
3
4/*
5The mounttable tool facilitates interaction with a Veyron mount table.
6
7Usage:
8 mounttable <command>
9
10The mounttable commands are:
11 glob returns all matching entries in the mount table
12 mount Mounts a server <name> onto a mount table
13 unmount removes server <name> from the mount table
14 resolvestep takes the next step in resolving a name.
15 help Display help for commands or topics
16Run "mounttable help [command]" for command usage.
17
18The global flags are:
Cosmos Nicolaoud83b90b2014-11-30 15:01:31 -080019 -alsologtostderr=true
20 log to standard error as well as files
21 -log_backtrace_at=:0
22 when logging hits line file:N, emit a stack trace
23 -log_dir=
24 if non-empty, write log files to this directory
25 -logtostderr=false
26 log to standard error instead of files
27 -max_stack_buf_size=4292608
28 max size in bytes of the buffer to use for logging stack traces
29 -stderrthreshold=2
30 logs at or above this threshold go to stderr
31 -v=0
32 log level for V logs
Jiri Simsa3540e3a2014-12-26 07:54:09 -080033 -vanadium.i18n_catalogue=
34 18n catalogue files to load, comma separated
Cosmos Nicolaoud83b90b2014-11-30 15:01:31 -080035 -veyron.credentials=
36 directory to use for storing security credentials
Robin Thellend8fea01c2014-12-11 13:48:10 -080037 -veyron.namespace.root=[/ns.dev.v.io:8101]
Cosmos Nicolaoud83b90b2014-11-30 15:01:31 -080038 local namespace root; can be repeated to provided multiple roots
39 -veyron.vtrace.cache_size=1024
40 The number of vtrace traces to store in memory.
41 -veyron.vtrace.dump_on_shutdown=false
42 If true, dump all stored traces on runtime shutdown.
43 -veyron.vtrace.sample_rate=0
44 Rate (from 0.0 to 1.0) to sample vtrace traces.
45 -vmodule=
46 comma-separated list of pattern=N settings for file-filtered logging
Todd Wang0d12d712014-10-06 17:25:41 -070047
48Mounttable Glob
49
50returns all matching entries in the mount table
51
52Usage:
Cosmos Nicolaoud83b90b2014-11-30 15:01:31 -080053 mounttable glob [<mount name>] <pattern>
Todd Wang0d12d712014-10-06 17:25:41 -070054
Cosmos Nicolaoud83b90b2014-11-30 15:01:31 -080055<mount name> is a mount name on a mount table. Defaults to namespace root.
Todd Wang0d12d712014-10-06 17:25:41 -070056<pattern> is a glob pattern that is matched against all the entries below the
57specified mount name.
58
59Mounttable Mount
60
61Mounts a server <name> onto a mount table
62
63Usage:
64 mounttable mount <mount name> <name> <ttl>
65
Cosmos Nicolaoud83b90b2014-11-30 15:01:31 -080066<mount name> is a mount name on a mount table. <name> is the rooted object name
67of the server. <ttl> is the TTL of the new entry. It is a decimal number
68followed by a unit suffix (s, m, h). A value of 0s represents an infinite
69duration.
Todd Wang0d12d712014-10-06 17:25:41 -070070
71Mounttable Unmount
72
73removes server <name> from the mount table
74
75Usage:
76 mounttable unmount <mount name> <name>
77
Cosmos Nicolaoud83b90b2014-11-30 15:01:31 -080078<mount name> is a mount name on a mount table. <name> is the rooted object name
79of the server.
Todd Wang0d12d712014-10-06 17:25:41 -070080
81Mounttable Resolvestep
82
83takes the next step in resolving a name.
84
85Usage:
86 mounttable resolvestep <mount name>
87
88<mount name> is a mount name on a mount table.
89
90Mounttable Help
91
92Help with no args displays the usage of the parent command.
Cosmos Nicolaoud83b90b2014-11-30 15:01:31 -080093
Todd Wang0d12d712014-10-06 17:25:41 -070094Help with args displays the usage of the specified sub-command or help topic.
Cosmos Nicolaoud83b90b2014-11-30 15:01:31 -080095
Todd Wang0d12d712014-10-06 17:25:41 -070096"help ..." recursively displays help for all commands and topics.
97
Cosmos Nicolaoud83b90b2014-11-30 15:01:31 -080098The output is formatted to a target width in runes. The target width is
99determined by checking the environment variable CMDLINE_WIDTH, falling back on
100the terminal width from the OS, falling back on 80 chars. By setting
101CMDLINE_WIDTH=x, if x > 0 the width is x, if x < 0 the width is unlimited, and
102if x == 0 or is unset one of the fallbacks is used.
103
Todd Wang0d12d712014-10-06 17:25:41 -0700104Usage:
105 mounttable help [flags] [command/topic ...]
106
107[command/topic ...] optionally identifies a specific sub-command or help topic.
108
Cosmos Nicolaoud83b90b2014-11-30 15:01:31 -0800109The mounttable help flags are:
110 -style=text
111 The formatting style for help output, either "text" or "godoc".
Todd Wang0d12d712014-10-06 17:25:41 -0700112*/
113package main