From 0d24c08847ef4f382563486b3bd42e8c7fccf466 Mon Sep 17 00:00:00 2001 From: Ansgar Schulte <1299623+ansgarschulte@users.noreply.github.com> Date: Thu, 30 Nov 2023 15:55:10 +0100 Subject: [PATCH] chore: change wording --- pkg/extcontainer/action_fill_disk.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/extcontainer/action_fill_disk.go b/pkg/extcontainer/action_fill_disk.go index 76b15b9..c7e820a 100644 --- a/pkg/extcontainer/action_fill_disk.go +++ b/pkg/extcontainer/action_fill_disk.go @@ -126,11 +126,11 @@ func (a *fillDiskAction) Describe() action_kit_api.ActionDescription { Type: action_kit_api.String, Options: extutil.Ptr([]action_kit_api.ParameterOption{ action_kit_api.ExplicitParameterOption{ - Label: "At once: The disk will be filled at once with the fallocate command", + Label: "At once (fallocate)", Value: "AT_ONCE", }, action_kit_api.ExplicitParameterOption{ - Label: "Over time: The disk will be filled over time with the dd command", + Label: "Over time (dd)", Value: "OVER_TIME", }, }),