-
-
Notifications
You must be signed in to change notification settings - Fork 57
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
fix(base): disable ntp installed on noble #386
Conversation
Confusion on why this doesnt affect local |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm assuming the reason that this did not occur locally is that we don't install/start systemd-timesyncd which conflicts with ntp.
This must be coming from the DigitalOcean base images for 24.04, but we can account for it in our states still, if we were to move to another provider we want to ensure that we're using some form of time synchronization daemon!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Further down the rabbit hole, it seems systemd-timesyncd refuses to run in a container, which is actually kinda cool but shows the limits of our local dev setup 🙃
I opened #387 which should give us a way to bail out of functionality that doesn't work in a docker container via a grain, might be helpful in pushing this along.
Don't forget to pull the latest changes on |
What