cli: Move node addresses command
To make things a little more consistent, move the rad self --address
command to rad node config --addresses, since it’s more about
externally-facing configuration of the node, rather than your local user
or profile.
5 files changed
+36
-24
091f7b7e
→
a48081f2
modified radicle-cli/examples/rad-node.md
@@ -18,6 +18,12 @@ $ rad node status
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified radicle-cli/examples/rad-self.md
@@ -38,8 +38,3 @@ ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHahWSBEpuT1ESZbynOmBNkLBSnR32Ar4woZqSV2YNH1
|
|
|
|
|
|
| - | |
| - | |
| - | |
| - | |
| - | |
modified radicle-cli/src/commands/node.rs
@@ -4,6 +4,8 @@ use std::time;
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
@@ -32,7 +34,7 @@ Usage
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -68,7 +70,9 @@ pub enum Operation {
|
|
|
|
|
|
| - | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -121,6 +125,7 @@ impl Args for Options {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -167,6 +172,9 @@ impl Args for Options {
|
|
|
|
|
|
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -191,7 +199,7 @@ impl Args for Options {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -217,7 +225,16 @@ pub fn run(options: Options, ctx: impl term::Context) -> anyhow::Result<()> {
|
|
|
|
|
|
| - | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified radicle-cli/src/commands/self.rs
@@ -1,7 +1,6 @@
|
|
|
|
|
|
| - | |
|
|
|
|
|
@@ -22,7 +21,6 @@ Options
|
|
|
|
|
|
| - | |
|
|
|
|
|
@@ -34,7 +32,6 @@ Options
|
|
|
|
|
|
| - | |
|
|
|
|
|
@@ -61,9 +58,6 @@ impl Args for Options {
|
|
|
|
|
|
| - | |
| - | |
| - | |
|
|
|
|
|
@@ -105,12 +99,6 @@ pub fn run(options: Options, ctx: impl term::Context) -> anyhow::Result<()> {
|
|
|
|
|
|
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
|
|
|
|
|
modified radicle-cli/tests/commands.rs
@@ -1,6 +1,6 @@
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -8,7 +8,7 @@ use radicle::node::address::Store as _;
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -582,7 +582,13 @@ fn rad_node_connect() {
|
|
|
|
|
|
| - | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|