Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ncm-network: fix nmstate package definition in Kickstart config #1630

Merged
merged 1 commit into from Sep 13, 2023

Conversation

jouvin
Copy link
Contributor

@jouvin jouvin commented Sep 13, 2023

Fixes #1629

@jouvin jouvin requested a review from aka7 September 13, 2023 08:40
@@ -13,4 +13,4 @@ prefix "/software/components/network";
prefix '/software/packages';
'nmstate' = dict();
prefix "/system/aii/osinstall/ks";
"NetworkManager-config-server" = dict();
'packages' = append("NetworkManager-config-server");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably unnecessary, but for extra safety:

Suggested change
'packages' = append("NetworkManager-config-server");
'packages' ?= list();
'packages' = append(SELF, 'NetworkManager-config-server');

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that should not be needed at all ever. single argument append does it all.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

True, but the explicit SELF guards against users adding more items to the append.
Anyway, it's perfectly fine and now merged.

@jrha jrha added this to the 23.9 milestone Sep 13, 2023
@jrha jrha merged commit d880a93 into quattor:master Sep 13, 2023
2 checks passed
@jrha jrha added the bug label Sep 13, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Development

Successfully merging this pull request may close these issues.

ncm-network nmstate: invalid package definition in Kickstart configuration
4 participants