[Arista] Fix dockerd issue on Arista platforms (#7376)

Why I did it
Recent systemd upgrade from #7228 requires an extra cmdline parameter for dockerd to start properly.
Updating boot0 was missed as part of the systemd upgrade change.

How I did it
Just added the missing cmdline parameter in files/Aboot/boot0.j2
This change fixes #7372

How to verify it
Boot the image and dockerd should start normally.
This commit is contained in:
Samuel Angebault 2021-04-20 14:55:14 -07:00 committed by GitHub
parent c8e06dffa6
commit 96690faa5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -615,6 +615,9 @@ write_image_specific_cmdline() {
# disable deterministic interface naming
cmdline_add net.ifnames=0
# disable unified cgroup hierarchy to workaround dockerd limitation
cmdline_add systemd.unified_cgroup_hierarchy=0
# verbosity
cmdline_add quiet
# Start showing systemd information from the first failing unit if any.