hivectl: trim --graceful doc to 'applies to agents only'

Drop the enumeration of what the flag does not apply to, per operator
review on the sibling graceful-stop change. Regenerate the CLI doc so
the markdown-docs self-diff check stays in sync.
This commit is contained in:
atlas 2026-06-19 12:13:15 +02:00
commit 5da1ef4963
2 changed files with 2 additions and 3 deletions

View file

@ -346,7 +346,7 @@ Restart containers hive-wide — `stop` then `start` over the same scope. Bare `
* `--forge` — The forge container (`hive-forge`)
* `--gateway` — The gateway container (`hive-gateway`)
* `--matrix` — The matrix container (`hive-matrix`)
* `--graceful` — Gracefully quiesce each agent on the stop half (see `stop --graceful`). NOTE: not yet effective — falls through to a hard stop until the per-agent quiesce lands
* `--graceful` — Gracefully quiesce each agent on the stop half (see `stop --graceful`). Applies to agents only

View file

@ -144,8 +144,7 @@ enum Cmd {
#[command(flatten)]
scope: ScopeArgs,
/// Gracefully quiesce each agent on the stop half (see
/// `stop --graceful`). NOTE: not yet effective — falls through to a
/// hard stop until the per-agent quiesce lands.
/// `stop --graceful`). Applies to agents only.
#[arg(long)]
graceful: bool,
},