Skip to content

Commit e8886e5

Browse files
committed
chore(image): change uefi default value to false
Signed-off-by: Alexander Dahmen <[email protected]>
1 parent 0ac494e commit e8886e5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/stackit_image_create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ stackit image create [flags]
4343
--rescue-bus string Sets the device bus when the image is used as a rescue image.
4444
--rescue-device string Sets the device when the image is used as a rescue image.
4545
--secure-boot Enables Secure Boot.
46-
--uefi Enables UEFI boot. (default true)
46+
--uefi Enables UEFI boot.
4747
--video-model string Sets Graphic device model.
4848
--virtio-scsi Enables the use of VirtIO SCSI to provide block device access. By default instances use VirtIO Block.
4949
```

internal/cmd/image/create/create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ func configureFlags(cmd *cobra.Command) {
274274
cmd.Flags().String(rescueBusFlag, "", "Sets the device bus when the image is used as a rescue image.")
275275
cmd.Flags().String(rescueDeviceFlag, "", "Sets the device when the image is used as a rescue image.")
276276
cmd.Flags().Bool(secureBootFlag, false, "Enables Secure Boot.")
277-
cmd.Flags().Bool(uefiFlag, true, "Enables UEFI boot.")
277+
cmd.Flags().Bool(uefiFlag, false, "Enables UEFI boot.")
278278
cmd.Flags().String(videoModelFlag, "", "Sets Graphic device model.")
279279
cmd.Flags().Bool(virtioScsiFlag, false, "Enables the use of VirtIO SCSI to provide block device access. By default instances use VirtIO Block.")
280280

0 commit comments

Comments
 (0)