From d584f9a40ba42b58aa05823ef3bb6025cb521338 Mon Sep 17 00:00:00 2001 From: Evan Lezar Date: Fri, 10 Jan 2025 10:25:56 +0100 Subject: [PATCH] [no-relnote] Sort feature flags Signed-off-by: Evan Lezar --- internal/config/features.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/config/features.go b/internal/config/features.go index b418daef7..396e0b8cd 100644 --- a/internal/config/features.go +++ b/internal/config/features.go @@ -18,13 +18,13 @@ package config // features specifies a set of named features. type features struct { - // DisableImexChannelCreation ensures that the implicit creation of - // requested IMEX channels is skipped when invoking the nvidia-container-cli. - DisableImexChannelCreation *feature `toml:"disable-imex-channel-creation,omitempty"` // AllowLDConfigFromContainer allows non-host ldconfig paths to be used. // If this feature flag is not set to 'true' only host-rooted config paths // (i.e. paths starting with an '@' are considered valid) AllowLDConfigFromContainer *feature `toml:"allow-ldconfig-from-container,omitempty"` + // DisableImexChannelCreation ensures that the implicit creation of + // requested IMEX channels is skipped when invoking the nvidia-container-cli. + DisableImexChannelCreation *feature `toml:"disable-imex-channel-creation,omitempty"` } type feature bool