feat: Update 14 and remove 1 files
All checks were successful
Build-Test-Publish / build (linux/amd64) (push) Successful in 44s
Build-Test-Publish / build (linux/arm64) (push) Successful in 3m32s

This commit is contained in:
j
2025-12-30 11:25:22 +13:00
parent 9ff9596c8a
commit 30c4077109
15 changed files with 40 additions and 191 deletions

View File

@@ -307,7 +307,7 @@ namespace dropshell
}
// Run status script, does not display output.
if (!env.run_remote_template_command(service, "status", {}, true, {}))
if (!env.run_remote_template_command(service, "status", {}, true, {}, NULL))
return HealthStatus::UNHEALTHY;
return HealthStatus::HEALTHY;
}
@@ -337,7 +337,7 @@ namespace dropshell
// Run ports script and capture output
std::string output;
if (env.run_remote_template_command_and_capture_output(service, "ports", {}, output, true, {}))
if (env.run_remote_template_command(service, "ports", {}, true, {}, &output))
{
// Parse the output - expecting comma-separated or newline-separated port numbers
std::stringstream ss(output);