Skip to content

Commit

Permalink
Generate nouveau config when nouveau is enabled
Browse files Browse the repository at this point in the history
Fix `dev/run` setup_configs, generate nouveau configuration when
nouveau is enabled

Related PR: #4956
  • Loading branch information
jiahuili430 committed Jan 10, 2024
1 parent b275635 commit 246103c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dev/run
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,8 @@ def setup_configs(ctx):
write_config(ctx, node, env)
write_locald_configs(ctx, node, env)
generate_haproxy_config(ctx)
generate_nouveau_config(ctx)
if env["nouveau_enable"] == "true":
generate_nouveau_config(ctx)


def write_locald_configs(ctx, node, env):
Expand Down

0 comments on commit 246103c

Please sign in to comment.