1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #27690 from Microsoft/service

mkdirall on the PID file path
This commit is contained in:
Vincent Demeester 2016-10-25 11:15:46 -07:00 committed by GitHub
commit 0dfa306cdd

View file

@ -7,8 +7,11 @@ import (
"fmt"
"io/ioutil"
"os"
"path/filepath"
"strconv"
"strings"
"github.com/docker/docker/pkg/system"
)
// PIDFile is a file used to store the process ID of a running process.
@ -33,6 +36,10 @@ func New(path string) (*PIDFile, error) {
if err := checkPIDFileAlreadyExists(path); err != nil {
return nil, err
}
// Note MkdirAll returns nil if a directory already exists
if err := system.MkdirAll(filepath.Dir(path), os.FileMode(0755)); err != nil {
return nil, err
}
if err := ioutil.WriteFile(path, []byte(fmt.Sprintf("%d", os.Getpid())), 0644); err != nil {
return nil, err
}