mirror of
https://github.com/containers/podman.git
synced 2025-05-22 17:46:52 +08:00

* Added support for system service * Enabled linting on the varlinkapi source, needed to support V2 service command * Added support for PODMAN_SOCKET Skip linting deprecated code Rather than introduce bugs by correcting deprecated code, linting the code is being skipped. Code that is being ported into V2 is being checked. Signed-off-by: Jhon Honce <jhonce@redhat.com>
34 lines
852 B
Go
34 lines
852 B
Go
package system
|
|
|
|
import (
|
|
"github.com/containers/libpod/cmd/podmanV2/registry"
|
|
"github.com/containers/libpod/pkg/domain/entities"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
// Command: podman _system_
|
|
systemCmd = &cobra.Command{
|
|
Use: "system",
|
|
Short: "Manage podman",
|
|
Long: "Manage podman",
|
|
TraverseChildren: true,
|
|
PersistentPreRunE: preRunE,
|
|
RunE: registry.SubCommandExists,
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
registry.Commands = append(registry.Commands, registry.CliCommand{
|
|
Mode: []entities.EngineMode{entities.ABIMode, entities.TunnelMode},
|
|
Command: systemCmd,
|
|
})
|
|
systemCmd.SetHelpTemplate(registry.HelpTemplate())
|
|
systemCmd.SetUsageTemplate(registry.UsageTemplate())
|
|
}
|
|
|
|
func preRunE(cmd *cobra.Command, args []string) error {
|
|
_, err := registry.NewContainerEngine(cmd, args)
|
|
return err
|
|
}
|