[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 Guohan Lu
parent ae574ab000
commit 30cc959787

View File

@ -614,6 +614,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.