Skip to content

Commit

Permalink
Merge pull request #1818 from rhatdan/tz
Browse files Browse the repository at this point in the history
add ConfigureTimeZone for all Unix based platforms
  • Loading branch information
openshift-merge-bot[bot] committed Jan 24, 2024
2 parents 167512e + e1deac6 commit 4b53eca
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build linux
//go:build !windows && !darwin

package timezone

Expand Down
7 changes: 7 additions & 0 deletions pkg/timezone/timezone_unsupported.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
//go:build windows || darwin

package timezone

func ConfigureContainerTimeZone(timezone, containerRunDir, mountPoint, etcPath, containerID string) (string, error) {
return "", nil
}

0 comments on commit 4b53eca

Please sign in to comment.