소스 검색

Merge pull request #56 from thaJeztah/18.09_backport_more_permissive_daeon_conf_dir

[18.09] backport loosen permissions on /etc/docker directory
Andrew Hsu 6 년 전
부모
커밋
34b3cf4b0c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      daemon/trustkey.go

+ 1 - 1
daemon/trustkey.go

@@ -17,7 +17,7 @@ import (
 // TODO: this should use more of libtrust.LoadOrCreateTrustKey which may need
 // a refactor or this function to be moved into libtrust
 func loadOrCreateTrustKey(trustKeyPath string) (libtrust.PrivateKey, error) {
-	err := system.MkdirAll(filepath.Dir(trustKeyPath), 0700, "")
+	err := system.MkdirAll(filepath.Dir(trustKeyPath), 0755, "")
 	if err != nil {
 		return nil, err
 	}