summaryrefslogtreecommitdiff
path: root/runtime/execdriver/native/info.go
blob: aef2f85c6b979c49627f89c5a281fe8bab57b594 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package native

import (
	"os"
	"path/filepath"
)

type info struct {
	ID     string
	driver *driver
}

// IsRunning is determined by looking for the
// pid file for a container.  If the file exists then the
// container is currently running
func (i *info) IsRunning() bool {
	if _, err := os.Stat(filepath.Join(i.driver.root, i.ID, "pid")); err == nil {
		return true
	}
	return false
}