package tunnel import ( "context" "errors" "github.com/containers/podman/v5/libpod/define" "github.com/containers/podman/v5/pkg/bindings/system" "github.com/containers/podman/v5/pkg/domain/entities" ) func (ic *ContainerEngine) Info(ctx context.Context) (*define.Info, error) { return system.Info(ic.ClientCtx, nil) } func (ic *ContainerEngine) SetupRootless(_ context.Context, noMoveProcess bool, cgroupMode string) error { panic(errors.New("rootless engine mode is not supported when tunneling")) } // SystemPrune prunes unused data from the system. func (ic *ContainerEngine) SystemPrune(ctx context.Context, opts entities.SystemPruneOptions) (*entities.SystemPruneReport, error) { options := new(system.PruneOptions).WithAll(opts.All).WithVolumes(opts.Volume).WithFilters(opts.Filters).WithExternal(opts.External) return system.Prune(ic.ClientCtx, options) } func (ic *ContainerEngine) SystemCheck(ctx context.Context, opts entities.SystemCheckOptions) (*entities.SystemCheckReport, error) { options := new(system.CheckOptions).WithQuick(opts.Quick).WithRepair(opts.Repair).WithRepairLossy(opts.RepairLossy) if opts.UnreferencedLayerMaximumAge != nil { duration := *opts.UnreferencedLayerMaximumAge options = options.WithUnreferencedLayerMaximumAge(duration.String()) } return system.Check(ic.ClientCtx, options) } func (ic *ContainerEngine) Migrate(ctx context.Context, options entities.SystemMigrateOptions) error { return errors.New("runtime migration is not supported on remote clients") } func (ic *ContainerEngine) Renumber(ctx context.Context) error { return errors.New("lock renumbering is not supported on remote clients") } func (ic *ContainerEngine) Reset(ctx context.Context) error { return errors.New("system reset is not supported on remote clients") } func (ic *ContainerEngine) SystemDf(ctx context.Context, options entities.SystemDfOptions) (*entities.SystemDfReport, error) { return system.DiskUsage(ic.ClientCtx, nil) } func (ic *ContainerEngine) Unshare(ctx context.Context, args []string, options entities.SystemUnshareOptions) error { return errors.New("unshare is not supported on remote clients") } func (ic *ContainerEngine) Version(ctx context.Context) (*entities.SystemVersionReport, error) { return system.Version(ic.ClientCtx, nil) } func (ic *ContainerEngine) Locks(ctx context.Context) (*entities.LocksReport, error) { return nil, errors.New("locks is not supported on remote clients") }