-
-
Notifications
You must be signed in to change notification settings - Fork 563
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(rust): Update CLI documentation for the
status
and reset
com…
…mands Signed-off-by: Wryhder <[email protected]>
- Loading branch information
Showing
6 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
implementations/rust/ockam/ockam_command/src/reset/static/after_long_help.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# This will prompt you for confirmation before proceeding | ||
$ ockam reset | ||
|
||
# To confirm without prompting | ||
$ ockam reset -y | ||
|
||
# Remove your spaces from the Orchestrator | ||
ockam reset --all |
1 change: 1 addition & 0 deletions
1
implementations/rust/ockam/ockam_command/src/reset/static/long_about.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[TBD] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
implementations/rust/ockam/ockam_command/src/status/static/after_long_help.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# To show information about all of the system's Identities and Nodes | ||
# Includes all identities, whether enrolled or unenrolled | ||
$ ockam status | ||
|
||
# Change the default timeout duration of the status command | ||
# Defaults to 2s if unspecified | ||
$ ockam status --timeout 0.5s |
9 changes: 9 additions & 0 deletions
9
implementations/rust/ockam/ockam_command/src/status/static/long_about.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[TBD: Is the following useful information?] | ||
[TBD: What needs to be elaborated on, and in what way?] | ||
|
||
The status command displays the current status of your machine, including information such as: | ||
- controller and project version [TBD: what are these?] | ||
- all cryptographic identities stored in your vault, their enrollment status with the Ockam Orchestrator, | ||
date of enrollment (if enrolled), and the email address associated with each identity | ||
- the status of any Nodes, process ids, associated routes and transport protocols, secure channels, | ||
portals, and running services |