cmdlxcconfig

This commit is contained in:
2021-05-24 00:11:58 +03:00
parent 890d99cd3e
commit a333fb34ef
5 changed files with 68 additions and 10 deletions

View File

@@ -0,0 +1,13 @@
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = ["cmdlxcconfig.go"],
importpath = "github.com/motiejus/code/undocker/internal/cmdlxcconfig",
visibility = ["//src/undocker:__subpackages__"],
deps = [
"//src/undocker/lxcconfig:go_default_library",
"@com_github_jessevdk_go_flags//:go_default_library",
"@org_uber_go_multierr//:go_default_library",
],
)

View File

@@ -0,0 +1,45 @@
package cmdlxcconfig
import (
"errors"
"os"
goflags "github.com/jessevdk/go-flags"
"github.com/motiejus/code/undocker/lxcconfig"
"go.uber.org/multierr"
)
// Command is "lxcconfig" command
type Command struct {
PositionalArgs struct {
Infile goflags.Filename `long:"infile" description:"Input tarball"`
Outfile string `long:"outfile" description:"Output path, stdout is '-'"`
} `positional-args:"yes" required:"yes"`
}
// Execute executes lxcconfig Command
func (c *Command) Execute(args []string) (err error) {
if len(args) != 0 {
return errors.New("too many args")
}
rd, err := os.Open(string(c.PositionalArgs.Infile))
if err != nil {
return err
}
defer func() { err = multierr.Append(err, rd.Close()) }()
var out *os.File
outf := string(c.PositionalArgs.Outfile)
if outf == "-" {
out = os.Stdout
} else {
out, err = os.Create(outf)
if err != nil {
return err
}
}
defer func() { err = multierr.Append(err, out.Close()) }()
return lxcconfig.LXCConfig(rd, out)
}