Skip to content

Commit

Permalink
Fix unhandled aliases.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Diamond committed Oct 25, 2024
1 parent 2446e88 commit a56da8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/config_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -2036,9 +2036,9 @@ def main():
passed = query_device_id(config_interface, args)
elif args.command == "reset":
passed = request_reset(config_interface, args)
elif args.command == "shutdown":
elif args.command in ["stop", "shutdown"]:
passed = request_shutdown(config_interface, args)
elif args.command == "startup":
elif args.command in ["start", "startup"]:
passed = request_startup(config_interface, args)
elif args.command == "fault":
passed = request_fault(config_interface, args)
Expand Down

0 comments on commit a56da8b

Please sign in to comment.