From 9ed3b4ae0e4ac327a37c67f456880e8ed54017a6 Mon Sep 17 00:00:00 2001 From: Jonathan Holloway Date: Wed, 5 Feb 2025 09:13:41 -0600 Subject: [PATCH] fix extra user group value in commit request Signed-off-by: Jonathan Holloway --- pkg/clients/imagebuilder/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/clients/imagebuilder/client.go b/pkg/clients/imagebuilder/client.go index ff6cce9ec..2ec008027 100644 --- a/pkg/clients/imagebuilder/client.go +++ b/pkg/clients/imagebuilder/client.go @@ -369,7 +369,7 @@ func (c *Client) ComposeInstaller(ctx context.Context, image *models.Image) (*mo if image.Installer != nil && image.Installer.Username != "" && image.Installer.SSHKey != "" { users = append(users, User{Name: image.Installer.Username, SSHKey: strings.TrimSpace(image.Installer.SSHKey), - Groups: []string{image.Installer.Username, "wheel"}}) + Groups: []string{"wheel"}}) } req := &ComposeRequest{