Improve CLI and daemon lifecycle usability

This commit is contained in:
Eric Wendland 2026-07-18 15:23:20 +02:00
commit f61cb44dad
14 changed files with 1028 additions and 204 deletions

View file

@ -49,8 +49,9 @@ On Machine A:
```sh
geth init --admin-key ~/.ssh/id_ed25519.pub --signing-key ~/.ssh/id_ed25519 --node-name owner
geth daemon service install --start
geth daemon install
geth wait daemon --timeout-ms 30000
geth daemon status
geth status --json
geth doctor --json
geth peer export --out /tmp/owner.peer.json
@ -191,8 +192,8 @@ On Machine A:
```sh
geth backup create --out /tmp/geth-backup
geth daemon service stop
geth daemon service start
geth daemon stop
geth daemon start
geth wait daemon --timeout-ms 30000
geth doctor --json
```