Skip to content
Closed
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
2 changes: 2 additions & 0 deletions octobot_commons/os_clock_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ def _get_sync_cmd(self):
# use 2x w32tm /resync as the 1st one often fails
return "net stop w32time && net start w32time && w32tm /resync & w32tm /resync && w32tm /query /status"
if platform is commons_enums.PlatformsName.LINUX:
if os_util.has_admin_rights():
return "service ntp stop && ntpd -gq && service ntp start"
return "sudo service ntp stop && sudo ntpd -gq && sudo service ntp start"
if platform is commons_enums.PlatformsName.MAC:
raise NotImplementedError(platform.value)
Expand Down