Skip to content

Commit

Permalink
Merge branch 'master' into ct
Browse files Browse the repository at this point in the history
  • Loading branch information
breadyzhang authored May 30, 2023
2 parents 4469db0 + 7228dc2 commit 4c8b781
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
### Fix flaky submission failures
* #1084: CT flaky submission failures

### Add support for IBM Z operating system z/OS
* Add build tags for zos

### Chrome CT Policy Update
* #906: Update chromepolicy.go to follow the updated Chrome CT policy.

Expand Down
4 changes: 2 additions & 2 deletions x509/root_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build dragonfly || freebsd || linux || netbsd || openbsd || solaris
// +build dragonfly freebsd linux netbsd openbsd solaris
//go:build dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos
// +build dragonfly freebsd linux netbsd openbsd solaris zos

package x509

Expand Down
4 changes: 2 additions & 2 deletions x509/root_unix_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build dragonfly || freebsd || linux || netbsd || openbsd || solaris
// +build dragonfly freebsd linux netbsd openbsd solaris
//go:build dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos
// +build dragonfly freebsd linux netbsd openbsd solaris zos

package x509

Expand Down
13 changes: 13 additions & 0 deletions x509/root_zos.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// Copyright 2015 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build zos
// +build zos

package x509

// Possible certificate files; stop after finding one.
var certFiles = []string{
"/etc/cacert.pem", // IBM zOS default
}

0 comments on commit 4c8b781

Please sign in to comment.