Skip to content

Commit c14cfef

Browse files
authored
Merge pull request #123 from XenoPhex/master
downcase github.com/sirupsen/logrus imports
2 parents 0839765 + 461d6cb commit c14cfef

20 files changed

+20
-20
lines changed

activatelayer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package hcsshim
22

3-
import "github.com/Sirupsen/logrus"
3+
import "github.com/sirupsen/logrus"
44

55
// ActivateLayer will find the layer with the given id and mount it's filesystem.
66
// For a read/write layer, the mounted filesystem will appear as a volume on the

container.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"syscall"
99
"time"
1010

11-
"github.com/Sirupsen/logrus"
11+
"github.com/sirupsen/logrus"
1212
)
1313

1414
var (

createlayer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package hcsshim
22

3-
import "github.com/Sirupsen/logrus"
3+
import "github.com/sirupsen/logrus"
44

55
// CreateLayer creates a new, empty, read-only layer on the filesystem based on
66
// the parent layer provided.

createsandboxlayer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package hcsshim
22

3-
import "github.com/Sirupsen/logrus"
3+
import "github.com/sirupsen/logrus"
44

55
// CreateSandboxLayer creates and populates new read-write layer for use by a container.
66
// This requires both the id of the direct parent layer, as well as the full list

deactivatelayer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package hcsshim
22

3-
import "github.com/Sirupsen/logrus"
3+
import "github.com/sirupsen/logrus"
44

55
// DeactivateLayer will dismount a layer that was mounted via ActivateLayer.
66
func DeactivateLayer(info DriverInfo, id string) error {

destroylayer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package hcsshim
22

3-
import "github.com/Sirupsen/logrus"
3+
import "github.com/sirupsen/logrus"
44

55
// DestroyLayer will remove the on-disk files representing the layer with the given
66
// id, including that layer's containing folder, if any.

expandsandboxsize.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package hcsshim
22

3-
import "github.com/Sirupsen/logrus"
3+
import "github.com/sirupsen/logrus"
44

55
// ExpandSandboxSize expands the size of a layer to at least size bytes.
66
func ExpandSandboxSize(info DriverInfo, layerId string, size uint64) error {

exportlayer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"syscall"
88

99
"github.com/Microsoft/go-winio"
10-
"github.com/Sirupsen/logrus"
10+
"github.com/sirupsen/logrus"
1111
)
1212

1313
// ExportLayer will create a folder at exportFolderPath and fill that folder with

getlayermountpath.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package hcsshim
33
import (
44
"syscall"
55

6-
"github.com/Sirupsen/logrus"
6+
"github.com/sirupsen/logrus"
77
)
88

99
// GetLayerMountPath will look for a mounted layer with the given id and return

getsharedbaseimages.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package hcsshim
22

3-
import "github.com/Sirupsen/logrus"
3+
import "github.com/sirupsen/logrus"
44

55
// GetSharedBaseImages will enumerate the images stored in the common central
66
// image store and return descriptive info about those images for the purpose

0 commit comments

Comments
 (0)