getting there

This commit is contained in:
John
2025-04-27 14:55:07 +12:00
parent 39e53ccb11
commit a517940310
2 changed files with 22 additions and 11 deletions

View File

@ -212,7 +212,7 @@ int main(int argc, char* argv[]) {
// handle running a command.
std::set<std::string> commands;
dropshell::get_all_used_commands(commands);
commands.merge(std::set<std::string>{"ssh","edit"}); // handled by service_runner, but not in template_shell_commands.
commands.merge(std::set<std::string>{"ssh","edit","_allservicesstatus"}); // handled by service_runner, but not in template_shell_commands.
for (const auto& command : commands) {
if (cmd == command) {
std::string server_name;