Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions podman-image/00-podman-machine.preset
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
# Disable Root mountpoint warning on shh login
# https://github.com/containers/podman-machine-os/issues/155
disable coreos-warn-invalid-mounts.service
# We don't use zincati but because we ship our own custom builds so
# we don't care about the coreos update migration to OCI images.
disable coreos-oci-migration-motd.service

# Disable coreos chrony config, we do provide our own.
disable coreos-platform-chrony-config.service
2 changes: 2 additions & 0 deletions verify/image_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,8 @@ var _ = Describe("run image tests", Ordered, ContinueOnFailure, func() {
output := sshSession.outputToString()
Expect(output).To(ContainSubstring("Fedora CoreOS"), "should contain FCOS motd message")
Expect(output).ToNot(ContainSubstring("Warning"), "no warnings in motd message seen")
// no coreos-oci-migration-motd.service output should be seen
Expect(output).ToNot(ContainSubstring("zincati"), "no zincati migrate wanring in motd message seen")
})

It("check systemd resolved is not in use", func() {
Expand Down