Move parsing functions to pkg/parsers and the specific kernel handling
functions to pkg/parsers/kernel, and parsing filters to pkg/parsers/filter. Adjust imports and package references. Docker-DCO-1.1-Signed-off-by: Erik Hollensbe <github@hollensbe.org> (github: erikh)
This commit is contained in:
parent
de3aec0865
commit
c91872166b
9 changed files with 522 additions and 0 deletions
15
parsers/kernel/uname_unsupported.go
Normal file
15
parsers/kernel/uname_unsupported.go
Normal file
|
@ -0,0 +1,15 @@
|
|||
// +build !linux !amd64
|
||||
|
||||
package kernel
|
||||
|
||||
import (
|
||||
"errors"
|
||||
)
|
||||
|
||||
type Utsname struct {
|
||||
Release [65]byte
|
||||
}
|
||||
|
||||
func uname() (*Utsname, error) {
|
||||
return nil, errors.New("Kernel version detection is available only on linux")
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue