mirror of https://github.com/docker/docs.git
Update parseLxcInfo to comply with new lxc1.0 format
Docker-DCO-1.1-Signed-off-by: Guillaume J. Charmes <guillaume@charmes.net> (github: creack)
This commit is contained in:
parent
721562f296
commit
fd0737df2c
|
@ -36,7 +36,7 @@ func parseLxcInfo(raw string) (*lxcInfo, error) {
|
||||||
if len(parts) < 2 {
|
if len(parts) < 2 {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
switch strings.TrimSpace(parts[0]) {
|
switch strings.ToLower(strings.TrimSpace(parts[0])) {
|
||||||
case "state":
|
case "state":
|
||||||
info.Running = strings.TrimSpace(parts[1]) == "RUNNING"
|
info.Running = strings.TrimSpace(parts[1]) == "RUNNING"
|
||||||
case "pid":
|
case "pid":
|
||||||
|
|
Loading…
Reference in New Issue