I have various issues with using the AWS CLI while on an enterprise network. One is that WSL doesn't have the TLS certs added for Windows. Another is that the time gets out of sync.
For the time sync issue, at one point we added this:
That is, we did
sudo crontab -e
and added
*/45 * * * * hwclock -s
to crontab to periodically reset/restart some clock.
At least for the clock fix, I would like to make it so that if I set up a new work computer, I can ensure that gets done again.
I have various issues with using the AWS CLI while on an enterprise network. One is that WSL doesn't have the TLS certs added for Windows. Another is that the time gets out of sync.
For the time sync issue, at one point we added this:
That is, we did
and added
to
crontab
to periodically reset/restart some clock.At least for the clock fix, I would like to make it so that if I set up a new work computer, I can ensure that gets done again.