Skip to content

Commit

Permalink
inline
Browse files Browse the repository at this point in the history
  • Loading branch information
spowelljr committed Oct 3, 2022
1 parent f1b909e commit 463db44
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions pkg/drivers/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,10 @@ import (
"k8s.io/minikube/pkg/util"
)

const (
// LeasesPath is the path to dhcpd leases
LeasesPath = "/var/db/dhcpd_leases"
)
// LeasesPath is the path to dhcpd leases
const LeasesPath = "/var/db/dhcpd_leases"

var (
leadingZeroRegexp = regexp.MustCompile(`0([A-Fa-f0-9](:|$))`)
)
var leadingZeroRegexp = regexp.MustCompile(`0([A-Fa-f0-9](:|$))`)

// This file is for common code shared among internal machine drivers
// Code here should not be called from within minikube
Expand Down

0 comments on commit 463db44

Please sign in to comment.