Skip to content

Commit 68bbd11

Browse files
committed
OpTestConfiguration: Add OpenBMC NTP time sync
Run OpenBMC NTP Server time synchronization commands to allow synchronization between OpenBMC and op-test logging. Signed-off-by: Deb McLemore <[email protected]>
1 parent 8855e2e commit 68bbd11

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

OpTestConfiguration.py

+17
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ def get_parser():
223223
bmcgroup.add_argument("--bmc-password", help="SSH password for BMC")
224224
bmcgroup.add_argument("--bmc-usernameipmi", help="IPMI username for BMC")
225225
bmcgroup.add_argument("--bmc-passwordipmi", help="IPMI password for BMC")
226+
bmcgroup.add_argument("--bmc-ntp-server", help="NTP Server for OpenBMC")
226227
bmcgroup.add_argument("--bmc-prompt", default="#",
227228
help="Prompt for BMC ssh session")
228229
bmcgroup.add_argument("--smc-presshipmicmd")
@@ -738,6 +739,22 @@ def objs(self):
738739
conf=self,
739740
)
740741
bmc.set_system(self.op_system)
742+
try:
743+
if self.args.bmc_ntp_server in [None, ""]:
744+
self.args.bmc_ntp_server = "216.239.35.4"
745+
bmc.run_command("busctl set-property xyz.openbmc_project.Network "
746+
"/xyz/openbmc_project/network/eth0 "
747+
"xyz.openbmc_project.Network.EthernetInterface NTPServers as 1 {}"
748+
.format(self.args.bmc_ntp_server), retry=10)
749+
OpTestLogger.optest_logger_glob.optest_logger.debug("Set Network for OpenBMC NTP server")
750+
bmc.run_command("busctl set-property xyz.openbmc_project.Settings "
751+
"/xyz/openbmc_project/time/sync_method "
752+
"xyz.openbmc_project.Time.Synchronization TimeSyncMethod s "
753+
"xyz.openbmc_project.Time.Synchronization.Method.NTP", retry=10)
754+
OpTestLogger.optest_logger_glob.optest_logger.debug("Set TimeSync for OpenBMC NTP server")
755+
except Exception as e:
756+
OpTestLogger.optest_logger_glob.optest_logger.debug("Problem encountered with setting OpenBMC NTP server,"
757+
"Exception {}".format(e))
741758
elif self.args.bmc_type in ['qemu']:
742759
print(repr(self.args))
743760
bmc = OpTestQemu(conf=self,

0 commit comments

Comments
 (0)