mirror of
https://github.com/Luzifer/password.git
synced 2024-11-10 10:20:01 +00:00
40 lines
901 B
Go
40 lines
901 B
Go
|
// Copyright 2012 Jonas mg
|
||
|
//
|
||
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
||
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
||
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||
|
|
||
|
package pkgutil
|
||
|
|
||
|
import "github.com/tredoe/osutil"
|
||
|
|
||
|
type rpm struct{}
|
||
|
|
||
|
func (p rpm) Install(name ...string) error {
|
||
|
args := []string{"install"}
|
||
|
|
||
|
return osutil.Exec("/usr/bin/yum", append(args, name...)...)
|
||
|
}
|
||
|
|
||
|
func (p rpm) Remove(name ...string) error {
|
||
|
args := []string{"remove"}
|
||
|
|
||
|
return osutil.Exec("/usr/bin/yum", append(args, name...)...)
|
||
|
}
|
||
|
|
||
|
func (p rpm) Purge(name ...string) error {
|
||
|
return p.Remove(name...)
|
||
|
}
|
||
|
|
||
|
func (p rpm) Update() error {
|
||
|
return osutil.Exec("/usr/bin/yum", "update")
|
||
|
}
|
||
|
|
||
|
func (p rpm) Upgrade() error {
|
||
|
return osutil.Exec("/usr/bin/yum", "update")
|
||
|
}
|
||
|
|
||
|
func (p rpm) Clean() error {
|
||
|
return osutil.Exec("/usr/bin/yum", "clean", "packages")
|
||
|
}
|