Skip to content

Commit

Permalink
Allow the Status to be stored
Browse files Browse the repository at this point in the history
Signed-off-by: Anthony Floeder <[email protected]>
  • Loading branch information
ajfloeder committed Feb 15, 2024
1 parent 96969cf commit 37f79b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/blockdevice/lvm.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,9 @@ type Lvm struct {
// Check that Lvm implements the BlockDevice interface
var _ BlockDevice = &Lvm{}

// Create an LVM Device
func (l *Lvm) Create(ctx context.Context, complete bool) (bool, error) {
if !complete {
if complete {
return false, nil
}

Expand Down

0 comments on commit 37f79b2

Please sign in to comment.