blob: 6e8eb92aaa1f7cf438a1b90afdeae813afb67633 [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
33 -veyron.credentials=
34 directory to use for storing security credentials
35 -veyron.namespace.root=[/proxy.envyor.com:8101]
36 local namespace root; can be repeated to provided multiple roots
37 -veyron.vtrace.cache_size=1024
38 The number of vtrace traces to store in memory.
39 -veyron.vtrace.dump_on_shutdown=false
40 If true, dump all stored traces on runtime shutdown.
41 -veyron.vtrace.sample_rate=0
42 Rate (from 0.0 to 1.0) to sample vtrace traces.
43 -vmodule=
44 comma-separated list of pattern=N settings for file-filtered logging
Todd Wang0d12d712014-10-06 17:25:41 -070045
46Mounttable Glob
47
48returns all matching entries in the mount table
49
50Usage:
Cosmos Nicolaoud83b90b2014-11-30 15:01:31 -080051 mounttable glob [<mount name>] <pattern>
Todd Wang0d12d712014-10-06 17:25:41 -070052
Cosmos Nicolaoud83b90b2014-11-30 15:01:31 -080053<mount name> is a mount name on a mount table. Defaults to namespace root.
Todd Wang0d12d712014-10-06 17:25:41 -070054<pattern> is a glob pattern that is matched against all the entries below the
55specified mount name.
56
57Mounttable Mount
58
59Mounts a server <name> onto a mount table
60
61Usage:
62 mounttable mount <mount name> <name> <ttl>
63
Cosmos Nicolaoud83b90b2014-11-30 15:01:31 -080064<mount name> is a mount name on a mount table. <name> is the rooted object name
65of the server. <ttl> is the TTL of the new entry. It is a decimal number
66followed by a unit suffix (s, m, h). A value of 0s represents an infinite
67duration.
Todd Wang0d12d712014-10-06 17:25:41 -070068
69Mounttable Unmount
70
71removes server <name> from the mount table
72
73Usage:
74 mounttable unmount <mount name> <name>
75
Cosmos Nicolaoud83b90b2014-11-30 15:01:31 -080076<mount name> is a mount name on a mount table. <name> is the rooted object name
77of the server.
Todd Wang0d12d712014-10-06 17:25:41 -070078
79Mounttable Resolvestep
80
81takes the next step in resolving a name.
82
83Usage:
84 mounttable resolvestep <mount name>
85
86<mount name> is a mount name on a mount table.
87
88Mounttable Help
89
90Help with no args displays the usage of the parent command.
Cosmos Nicolaoud83b90b2014-11-30 15:01:31 -080091
Todd Wang0d12d712014-10-06 17:25:41 -070092Help with args displays the usage of the specified sub-command or help topic.
Cosmos Nicolaoud83b90b2014-11-30 15:01:31 -080093
Todd Wang0d12d712014-10-06 17:25:41 -070094"help ..." recursively displays help for all commands and topics.
95
Cosmos Nicolaoud83b90b2014-11-30 15:01:31 -080096The output is formatted to a target width in runes. The target width is
97determined by checking the environment variable CMDLINE_WIDTH, falling back on
98the terminal width from the OS, falling back on 80 chars. By setting
99CMDLINE_WIDTH=x, if x > 0 the width is x, if x < 0 the width is unlimited, and
100if x == 0 or is unset one of the fallbacks is used.
101
Todd Wang0d12d712014-10-06 17:25:41 -0700102Usage:
103 mounttable help [flags] [command/topic ...]
104
105[command/topic ...] optionally identifies a specific sub-command or help topic.
106
Cosmos Nicolaoud83b90b2014-11-30 15:01:31 -0800107The mounttable help flags are:
108 -style=text
109 The formatting style for help output, either "text" or "godoc".
Todd Wang0d12d712014-10-06 17:25:41 -0700110*/
111package main