Fix launch node string quoting

This is what I get for not testing it before pushing. I've made this
minor edit in place in the venv contents on bridge and launching
grafana02 appears to have worked. This should be the only fixup needed.

Change-Id: Ief32094fb0b216dac99879a285a7dbd0fd005b49
This commit is contained in:
Clark Boylan 2025-02-03 11:08:18 -08:00
parent 59ca749779
commit 42445986e7

View File

@ -136,7 +136,7 @@ def bootstrap_server(server, key, name, volume_device, keep,
raise Exception("CPU does not support x86-64-v2 (sse4_2)")
cpucount = 0
for line in cpuinfo.split(\n):
for line in cpuinfo.split('\n'):
if line.startswith('processor\t:'):
cpucount = cpucount + 1
if cpucount < 2: