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 --- packages/meshbay-hub/src/meshbay_hub/static/locales/nl.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'packages/meshbay-hub/src/meshbay_hub/static/locales/nl.js') diff --git a/packages/meshbay-hub/src/meshbay_hub/static/locales/nl.js b/packages/meshbay-hub/src/meshbay_hub/static/locales/nl.js index 5a9a303..986d653 100644 --- a/packages/meshbay-hub/src/meshbay_hub/static/locales/nl.js +++ b/packages/meshbay-hub/src/meshbay_hub/static/locales/nl.js @@ -489,6 +489,20 @@ export default { // Node admin 'node.title': 'Node', + 'node.service_checking': 'Node-service controleren…', + 'node.service_not_installed': 'Niet als service geïnstalleerd', + 'node.service_state_active': 'Actief', + 'node.service_state_inactive': 'Gestopt', + 'node.service_state_failed': 'Mislukt', + 'node.service_state_activating': 'Starten…', + 'node.service_state_deactivating': 'Stoppen…', + 'node.service_state_unknown': 'Onbekend', + 'node.service_start': 'Starten', + 'node.service_starting': 'Starten…', + 'node.service_stop': 'Stoppen', + 'node.service_stopping': 'Stoppen…', + 'node.service_restart': 'Herstarten', + 'node.service_restarting': 'Herstarten…', 'node.not_operator': 'Uw node is niet bereikbaar. Controleer of hij draait.', 'node.offline': 'Node is offline', 'node.retry': 'Opnieuw proberen', -- cgit v1.2.3