feat: Update 3 files
All checks were successful
Build-Test-Publish / build (linux/amd64) (push) Successful in 50s
Build-Test-Publish / build (linux/arm64) (push) Successful in 1m18s

This commit is contained in:
2025-10-12 11:51:32 +13:00
parent e9a6998761
commit 729a20707a
3 changed files with 23 additions and 5 deletions

View File

@@ -15,11 +15,13 @@ namespace dropshell {
// service_env_path: Full path to the service's service.env file
// missing_vars: Output parameter - list of variable names that were missing and added
// extra_vars: Output parameter - list of variable names that were extra and commented out
// template_info_env_path: Optional path to .template_info.env - variables from this file are allowed in service.env
bool validate_and_fix_service_env(
const std::string& template_service_env_path,
const std::string& service_env_path,
std::vector<std::string>& missing_vars,
std::vector<std::string>& extra_vars
std::vector<std::string>& extra_vars,
const std::string& template_info_env_path = ""
);
} // namespace dropshell