cc33cd3410
This duplicates some of the Exec code but I think it it worth it because the native driver is more straight forward and does not have the complexity have handling the type issues for now. Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael)
28 lines
741 B
Go
28 lines
741 B
Go
package nsinit
|
|
|
|
import (
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
// WritePid writes the namespaced processes pid to pid and it's start time
|
|
// to the path specified
|
|
func WritePid(path string, pid int, startTime string) error {
|
|
err := ioutil.WriteFile(filepath.Join(path, "pid"), []byte(fmt.Sprint(pid)), 0655)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return ioutil.WriteFile(filepath.Join(path, "start"), []byte(startTime), 0655)
|
|
}
|
|
|
|
// DeletePid removes the pid and started file from disk when the container's process
|
|
// dies and the container is cleanly removed
|
|
func DeletePid(path string) error {
|
|
err := os.Remove(filepath.Join(path, "pid"))
|
|
if serr := os.Remove(filepath.Join(path, "start")); err == nil {
|
|
err = serr
|
|
}
|
|
return err
|
|
}
|