From 8dc11dc05a35a5d64ba4d2c892ccc01c7bfae3da Mon Sep 17 00:00:00 2001 From: Christophe Besson Date: Sat, 22 Aug 2026 18:26:22 +0200 Subject: feat(node): systemd service panel on the Node page, and a clean CLI restart MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add a status panel at the top of the Node page — always visible, even before an MNP connection exists — showing the meshbay-node systemd unit's own state (via `systemctl --user show`, main process only) with Start/Stop/Restart controls. This is the piece the rest of the page cannot provide: it has to work while the daemon is stopped or crash- looping, which the MNP-based sections require the daemon to already answer. While touching node lifecycle: `reload` and `restart-daemon` in the CLI shelled out to pgrep + SIGTERM/SIGHUP and respawned the process by hand, logging to a hardcoded /tmp path. That pattern already SIGHUPed a developer's own running node by accident once (see the old test_cli_dispatch.py comment). Both now delegate to `systemctl --user reload|restart meshbay-node`, which the unit already supports correctly (ExecReload=, Restart=on-failure). Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_016SF6RKNBKg9qejmoMJ9ybA --- .../meshbay-hub/src/meshbay_hub/static/platform.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'packages/meshbay-hub/src/meshbay_hub/static/platform.js') diff --git a/packages/meshbay-hub/src/meshbay_hub/static/platform.js b/packages/meshbay-hub/src/meshbay_hub/static/platform.js index a8e17bf..30df80e 100644 --- a/packages/meshbay-hub/src/meshbay_hub/static/platform.js +++ b/packages/meshbay-hub/src/meshbay_hub/static/platform.js @@ -241,6 +241,28 @@ export const node = { async setPairingCode(code) { return bridge && bridge.node ? bridge.node.setPairingCode(code) : false; }, + /** + * The systemd unit's own state — start, stop and restart the node as a + * service, independent of whether the daemon itself is answering. Absent + * in a browser, same as the rest of `node`. + */ + service: { + available: Boolean(bridge && bridge.node && bridge.node.service), + async status() { + if (!bridge || !bridge.node || !bridge.node.service) return { supported: false }; + return bridge.node.service.status(); + }, + async stop() { + if (!bridge || !bridge.node || !bridge.node.service) + throw new Error('Node bridge not available'); + return bridge.node.service.stop(); + }, + async restart() { + if (!bridge || !bridge.node || !bridge.node.service) + throw new Error('Node bridge not available'); + return bridge.node.service.restart(); + }, + }, }; /** -- cgit v1.2.3