Documentation ¶
Overview ¶
Package apt provides the common functions to install a package via apt. See also https://en.wikipedia.org/wiki/APT_(software).
Index ¶
Constants ¶
View Source
const (
// Tool is the tool name of apt-get
Tool = "apt-get"
)
Variables ¶
This section is empty.
Functions ¶
func SetInstallerRegistry ¶
func SetInstallerRegistry(registry core.InstallerRegistry, defaultExecer fakeruntime.Execer)
SetInstallerRegistry sets the installer of registry
Types ¶
type CommonInstaller ¶ added in v0.0.63
type CommonInstaller struct { Name string Execer fakeruntime.Execer }
CommonInstaller is the installer of Conntrack in CentOS
func (*CommonInstaller) Available ¶ added in v0.0.63
func (d *CommonInstaller) Available() (ok bool)
Available check if support current platform
func (*CommonInstaller) Install ¶ added in v0.0.63
func (d *CommonInstaller) Install() (err error)
Install installs the Conntrack
func (*CommonInstaller) Start ¶ added in v0.0.63
func (d *CommonInstaller) Start() error
Start starts the Conntrack service
func (*CommonInstaller) Stop ¶ added in v0.0.63
func (d *CommonInstaller) Stop() error
Stop stops the Conntrack service
func (*CommonInstaller) Uninstall ¶ added in v0.0.63
func (d *CommonInstaller) Uninstall() (err error)
Uninstall uninstalls the Conntrack
func (*CommonInstaller) WaitForStart ¶ added in v0.0.63
func (d *CommonInstaller) WaitForStart() (ok bool, err error)
WaitForStart waits for the service be started
Click to show internal directories.
Click to hide internal directories.