2018-11-07 10:35:04 +00:00
|
|
|
package pkg
|
|
|
|
|
2018-11-11 20:38:16 +00:00
|
|
|
import "git.xdrm.io/go/nix-amer/internal/exec"
|
2018-11-07 10:35:04 +00:00
|
|
|
|
2018-11-11 20:38:16 +00:00
|
|
|
type dnf struct{ exec exec.Executor }
|
|
|
|
|
|
|
|
func (d *dnf) SetExecutor(_exec exec.Executor) {
|
|
|
|
d.exec = _exec
|
|
|
|
}
|
2018-11-07 10:35:04 +00:00
|
|
|
|
2018-11-11 00:10:30 +00:00
|
|
|
func (d dnf) Name() string { return "dnf" }
|
2018-11-07 10:35:04 +00:00
|
|
|
|
2018-11-11 00:10:30 +00:00
|
|
|
func (d dnf) Fetch() error {
|
2018-11-08 11:52:14 +00:00
|
|
|
return nil
|
2018-11-07 10:35:04 +00:00
|
|
|
}
|
|
|
|
|
2018-11-11 00:10:30 +00:00
|
|
|
func (d dnf) Upgrade() error {
|
2018-11-11 20:38:16 +00:00
|
|
|
err := d.exec.Command(d.Name(), "upgrade").Run()
|
|
|
|
d.exec.Command(d.Name(), "autoremove").Run()
|
2018-11-08 11:52:14 +00:00
|
|
|
return err
|
2018-11-07 10:35:04 +00:00
|
|
|
}
|
|
|
|
|
2018-11-11 00:10:30 +00:00
|
|
|
func (d dnf) Install(_pkg string) error {
|
2018-11-11 20:38:16 +00:00
|
|
|
return d.exec.Command(d.Name(), "install", _pkg).Run()
|
2018-11-07 10:35:04 +00:00
|
|
|
}
|
|
|
|
|
2018-11-11 00:10:30 +00:00
|
|
|
func (d dnf) Remove(_pkg string) error {
|
2018-11-11 20:38:16 +00:00
|
|
|
err := d.exec.Command(d.Name(), "remove", _pkg).Run()
|
|
|
|
d.exec.Command(d.Name(), "autoremove").Run()
|
2018-11-08 11:52:14 +00:00
|
|
|
return err
|
2018-11-07 10:35:04 +00:00
|
|
|
}
|