Skip to content

Commit 919351e

Browse files
committed
Fix conf generation on reconfigure
By not passing lkp to conflines, it was using the old lkp to generate cloud.conf.
1 parent 5a9ab87 commit 919351e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ All notable changes to this project will be documented in this file.
1010
- Only attempt static node resume when node is powered down.
1111
- Fix CUDA on Ubuntu by installing CUDA via runfile alongside NVIDIA driver from
1212
signed repo.
13+
- Fix conf generation issue on reconfiguration.
1314

1415
## \[5.7.6\]
1516

scripts/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ def make_cloud_conf(lkp=lkp, cloud_parameters=None):
349349

350350
lines = [
351351
FILE_PREAMBLE,
352-
conflines(cloud_parameters),
352+
conflines(cloud_parameters, lkp),
353353
loginlines(),
354354
*(partitionlines(p, lkp) for p in lkp.cfg.partitions.values()),
355355
suspend_exc,

0 commit comments

Comments
 (0)