containers.conf.5.md: fix append example

The fourth module had a copy-paste error and mistakenly claimed to be
number 3.

Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
This commit is contained in:
Valentin Rothberg 2024-02-14 15:03:02 +01:00
parent b5300a8901
commit ea2e09ea34
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ Consider the following example:
modules1.conf: env=["1=true"]
modules2.conf: env=["2=true"]
modules3.conf: env=["3=true", {append=true}]
modules3.conf: env=["4=true"]
modules4.conf: env=["4=true"]
```
After loading the files in the given order, the final contents are `env=["2=true", "3=true", "4=true"]`. If modules4.conf would set `{append=false}`, the final contents would be `env=["4=true"]`.