Add check-updates command to detect and update outdated agents and services
All checks were successful
Build-Test-Publish / build (linux/amd64) (push) Successful in 48s
Build-Test-Publish / build (linux/arm64) (push) Successful in 3m19s

This commit is contained in:
j
2026-03-28 11:56:11 +13:00
parent bea008d153
commit dafc0529f0
6 changed files with 271 additions and 1 deletions

View File

@@ -323,6 +323,11 @@ namespace dropshell
}
}
// Parse template hash
if (service_json.contains("template_hash") && service_json["template_hash"].is_string()) {
service_status.remote_template_hash = service_json["template_hash"].get<std::string>();
}
status[service_name] = service_status;
}
} catch (const nlohmann::json::parse_error& e) {