fix(status): recognize FreeBSD rc.d in hermes status fallback #6

Merged
clawdie merged 1 commit from fix/status-freebsd-rcd into main 2026-06-21 11:03:42 +02:00

View file

@ -501,6 +501,9 @@ def show_status(args):
elif sys.platform == 'darwin':
print(f" Status: {color('unknown', Colors.DIM)}")
print(" Manager: launchd")
elif sys.platform.startswith('freebsd'):
print(f" Status: {color('unknown', Colors.DIM)}")
print(" Manager: rc.d (service hermes_daemon)")
else:
print(f" Status: {color('N/A', Colors.DIM)}")
print(" Manager: (not supported on this platform)")