Skip to content

Commit

Permalink
(PA-7090) Correct system time on AIX
Browse files Browse the repository at this point in the history
We are encountering an issue with tests running on AIX due to incorrect
system time. While we are waiting on a permanent fix in ITHELP-99479,
this temporary workaround sets the timesync property on the Beaker host
object to "true" if the host is AIX.
  • Loading branch information
mhashizume committed Sep 27, 2024
1 parent 7bd9221 commit ac92c2c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions acceptance/tests/ssl/certificate_extensions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@
with_puppet_running_on(master, master_config) do
agents.each do |agent|
next if agent == master
# Temporarily sync time on AIX to account for incorrect system time (PA-7090)
agent.options[:timesync] = true if agent.platform.start_with?('aix')

step "Create agent csr_attributes.yaml on #{agent}"
agent_csr_attributes = get_test_file_path(agent, "csr_attributes.yaml")
Expand Down

0 comments on commit ac92c2c

Please sign in to comment.