File tree Expand file tree Collapse file tree 4 files changed +20
-4
lines changed Expand file tree Collapse file tree 4 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## HEAD
4
4
5
+ ### Add support for IBM Z operating system z/OS
6
+ * Add build tags for zos
7
+
5
8
### Chrome CT Policy Update
6
9
* #906 : Update chromepolicy.go to follow the updated Chrome CT policy.
7
10
Original file line number Diff line number Diff line change 2
2
// Use of this source code is governed by a BSD-style
3
3
// license that can be found in the LICENSE file.
4
4
5
- //go:build dragonfly || freebsd || linux || netbsd || openbsd || solaris
6
- // +build dragonfly freebsd linux netbsd openbsd solaris
5
+ //go:build dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos
6
+ // +build dragonfly freebsd linux netbsd openbsd solaris zos
7
7
8
8
package x509
9
9
Original file line number Diff line number Diff line change 2
2
// Use of this source code is governed by a BSD-style
3
3
// license that can be found in the LICENSE file.
4
4
5
- //go:build dragonfly || freebsd || linux || netbsd || openbsd || solaris
6
- // +build dragonfly freebsd linux netbsd openbsd solaris
5
+ //go:build dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos
6
+ // +build dragonfly freebsd linux netbsd openbsd solaris zos
7
7
8
8
package x509
9
9
Original file line number Diff line number Diff line change
1
+ // Copyright 2015 The Go Authors. All rights reserved.
2
+ // Use of this source code is governed by a BSD-style
3
+ // license that can be found in the LICENSE file.
4
+
5
+ //go:build zos
6
+ // +build zos
7
+
8
+ package x509
9
+
10
+ // Possible certificate files; stop after finding one.
11
+ var certFiles = []string {
12
+ "/etc/cacert.pem" , // IBM zOS default
13
+ }
You can’t perform that action at this time.
0 commit comments