Add container/VM autodiscovery, optional username in config, and management scripts
All checks were successful
Build-Publish / build (linux/amd64) (push) Successful in 4s
Build-Publish / build (linux/arm64) (push) Successful in 13s
Build-Publish / create-manifest (push) Successful in 1s
Build-Publish / publish-template (push) Successful in 15s

This commit is contained in:
j
2026-03-08 09:57:53 +13:00
parent ce55d6acc7
commit 8747209181
7 changed files with 270 additions and 6 deletions

View File

@@ -61,6 +61,9 @@ def parse_infrastructure_conf():
url = parts[1] if len(parts) > 1 else ''
if '@' in entry:
user, host = entry.split('@', 1)
else:
user, host = 'infmap', entry
if host:
servers.append({
'group': current_group or 'Default',
'username': user.strip(),