container: format code with gofumpt

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2023-08-24 17:57:34 +02:00
parent 87cedbe443
commit b71951c70c
No known key found for this signature in database
GPG key ID: 76698F39D527CE8C
3 changed files with 6 additions and 6 deletions

View file

@ -175,7 +175,7 @@ func (container *Container) toDisk() (*Container, error) {
}
// Save container settings
f, err := ioutils.NewAtomicFileWriter(pth, 0600)
f, err := ioutils.NewAtomicFileWriter(pth, 0o600)
if err != nil {
return nil, err
}
@ -250,7 +250,7 @@ func (container *Container) WriteHostConfig() (*containertypes.HostConfig, error
return nil, err
}
f, err := ioutils.NewAtomicFileWriter(pth, 0600)
f, err := ioutils.NewAtomicFileWriter(pth, 0o600)
if err != nil {
return nil, err
}
@ -279,7 +279,7 @@ func (container *Container) SetupWorkingDirectory(rootIdentity idtools.Identity)
return err
}
if err := idtools.MkdirAllAndChownNew(pth, 0755, rootIdentity); err != nil {
if err := idtools.MkdirAllAndChownNew(pth, 0o755, rootIdentity); err != nil {
pthInfo, err2 := os.Stat(pth)
if err2 == nil && pthInfo != nil && !pthInfo.IsDir() {
return errors.Errorf("Cannot mkdir: %s is not a directory", container.Config.WorkingDir)
@ -402,7 +402,7 @@ func (container *Container) StartLogger() (logger.Logger, error) {
if err != nil {
return nil, err
}
if err := os.MkdirAll(logDir, 0700); err != nil {
if err := os.MkdirAll(logDir, 0o700); err != nil {
return nil, errdefs.System(errors.Wrap(err, "error creating local logs dir"))
}
info.LogPath = filepath.Join(logDir, "container.log")

View file

@ -60,7 +60,7 @@ func (container *Container) BuildHostnameFile() error {
return err
}
container.HostnamePath = hostnamePath
return os.WriteFile(container.HostnamePath, []byte(container.Config.Hostname+"\n"), 0644)
return os.WriteFile(container.HostnamePath, []byte(container.Config.Hostname+"\n"), 0o644)
}
// NetworkMounts returns the list of network mounts.

View file

@ -32,7 +32,7 @@ func newContainer(t *testing.T) *Container {
id = uuid.New().String()
cRoot = filepath.Join(root, id)
)
if err := os.MkdirAll(cRoot, 0755); err != nil {
if err := os.MkdirAll(cRoot, 0o755); err != nil {
t.Fatal(err)
}
c := NewBaseContainer(id, cRoot)