Merge "Fix rst rendering"
This commit is contained in:
commit
9a53631e1c
1 changed files with 17 additions and 15 deletions
|
@ -3,26 +3,28 @@ uninstalling packages for an image build. This is done by creating a
|
||||||
package-installs.yaml or package-installs.json file in the element directory.
|
package-installs.yaml or package-installs.json file in the element directory.
|
||||||
|
|
||||||
|
|
||||||
example package-installs.yaml:
|
example package-installs.yaml::
|
||||||
libxml2:
|
|
||||||
grub2:
|
|
||||||
phase: pre-install.d
|
|
||||||
networkmanager:
|
|
||||||
uninstall: True
|
|
||||||
|
|
||||||
example package-installs.json:
|
libxml2:
|
||||||
{
|
grub2:
|
||||||
"libxml2": null,
|
phase: pre-install.d
|
||||||
"grub2": {"phase": "pre-install.d"},
|
networkmanager:
|
||||||
"networkmanager": {"uninstall": true}
|
uninstall: True
|
||||||
}
|
|
||||||
|
example package-installs.json::
|
||||||
|
|
||||||
|
{
|
||||||
|
"libxml2": null,
|
||||||
|
"grub2": {"phase": "pre-install.d"},
|
||||||
|
"networkmanager": {"uninstall": true}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
Setting phase or uninstall properties for a package overrides the following
|
Setting phase or uninstall properties for a package overrides the following
|
||||||
default values:
|
default values::
|
||||||
|
|
||||||
phase: install.d
|
phase: install.d
|
||||||
uninstall: False
|
uninstall: False
|
||||||
|
|
||||||
|
|
||||||
DEPRECATED: Adding a file under your elements pre-install.d, install.d, or
|
DEPRECATED: Adding a file under your elements pre-install.d, install.d, or
|
||||||
|
|
Loading…
Reference in a new issue