blob: 01f7a29c5b65ed4bc20090ac53faffddf7ce80e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// +build !remoteclient
package adapter
import (
"github.com/containers/libpod/pkg/autoupdate"
)
func (r *LocalRuntime) AutoUpdate() ([]string, []error) {
return autoupdate.AutoUpdate(r.Runtime)
}
|