Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OpTestConfiguration: Add OpenBMC NTP time sync #481

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions OpTestConfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,7 @@ def get_parser():
bmcgroup.add_argument("--bmc-password", help="SSH password for BMC")
bmcgroup.add_argument("--bmc-usernameipmi", help="IPMI username for BMC")
bmcgroup.add_argument("--bmc-passwordipmi", help="IPMI password for BMC")
bmcgroup.add_argument("--bmc-ntp-server", help="NTP Server for OpenBMC")
bmcgroup.add_argument("--bmc-prompt", default="#",
help="Prompt for BMC ssh session")
bmcgroup.add_argument("--smc-presshipmicmd")
Expand Down Expand Up @@ -832,6 +833,22 @@ def objs(self):
conf=self,
)
bmc.set_system(self.op_system)
try:
if self.args.bmc_ntp_server in [None, ""]:
self.args.bmc_ntp_server = "216.239.35.4"
bmc.run_command("busctl set-property xyz.openbmc_project.Network "
"/xyz/openbmc_project/network/eth0 "
"xyz.openbmc_project.Network.EthernetInterface NTPServers as 1 {}"
.format(self.args.bmc_ntp_server), retry=10)
OpTestLogger.optest_logger_glob.optest_logger.debug("Set Network for OpenBMC NTP server")
bmc.run_command("busctl set-property xyz.openbmc_project.Settings "
"/xyz/openbmc_project/time/sync_method "
"xyz.openbmc_project.Time.Synchronization TimeSyncMethod s "
"xyz.openbmc_project.Time.Synchronization.Method.NTP", retry=10)
OpTestLogger.optest_logger_glob.optest_logger.debug("Set TimeSync for OpenBMC NTP server")
except Exception as e:
OpTestLogger.optest_logger_glob.optest_logger.debug("Problem encountered with setting OpenBMC NTP server,"
"Exception {}".format(e))
elif self.args.bmc_type in ['qemu']:
print((repr(self.args)))
bmc = OpTestQemu(conf=self,
Expand Down