Instead of having a having :
[admin_commands.panels]
main_panel = "Main Panel"
router_panel = "Router Panel"
[admin_commands.commands]
admin_clear_task_report = { name = "Clear Tasks Reports", host = "server", panel = "main_panel", command = "clear_task_report" }
router_stats = { name = "Router Statistics", host = "router", panel = "router_panel", command = "stats" }
router_reboot = { name = "Reboot Router", host = "router", panel = "router_panel", command = "reboot" }
It should be better to have :
[admin_commands.panel_names]
main_panel = "Main Panel"
router_panel = "Router Panel"
[admin_commands.panel]
[admin_commands.panel.main_panel]
admin_clear_task_report = { name = "Clear Tasks Reports", host = "server", command = "clear_task_report" }
[admin_commands.panel.route_panel]
router_stats = { name = "Router Statistics", host = "router", command = "stats" }
router_reboot = { name = "Reboot Router", host = "router", command = "reboot" }
Instead of having a having :
It should be better to have :