Skip to content

Commit 246103c

Browse files
committed
Generate nouveau config when nouveau is enabled
Fix `dev/run` setup_configs, generate nouveau configuration when nouveau is enabled Related PR: #4956
1 parent b275635 commit 246103c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dev/run

+2-1
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,8 @@ def setup_configs(ctx):
369369
write_config(ctx, node, env)
370370
write_locald_configs(ctx, node, env)
371371
generate_haproxy_config(ctx)
372-
generate_nouveau_config(ctx)
372+
if env["nouveau_enable"] == "true":
373+
generate_nouveau_config(ctx)
373374

374375

375376
def write_locald_configs(ctx, node, env):

0 commit comments

Comments
 (0)