fix(status): recognize FreeBSD rc.d in hermes status fallback #6
1 changed files with 3 additions and 0 deletions
|
|
@ -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)")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue