stages/modprobe: configuration_files → config

Rename the `configuration_files` key to `config` key.
This commit is contained in:
Christian Kellner 2021-07-21 08:09:51 +00:00
parent 9e259ae0bc
commit f259b4e5ca
3 changed files with 25 additions and 25 deletions

View file

@ -457,7 +457,7 @@
{
"name": "org.osbuild.modprobe",
"options": {
"configuration_files": {
"config": {
"disallow-modules.conf": [
{
"command": "blacklist",

View file

@ -23,30 +23,32 @@
"baseurl": "https://rpmrepo.osbuild.org/v2/mirror/public/f34/f34-x86_64-fedora-20210512/"
}
],
"packages": ["kmod"]
"packages": [
"kmod"
]
}
}
},
{
"name": "org.osbuild.modprobe",
"options": {
"configuration_files": {
"disallow-modules.conf": [
{
"command": "blacklist",
"modulename": "nouveau"
},
{
"command": "blacklist",
"modulename": "floppy"
}
],
"disallow-additional-modules.conf": [
{
"command": "blacklist",
"modulename": "my-module"
}
]
"config": {
"disallow-modules.conf": [
{
"command": "blacklist",
"modulename": "nouveau"
},
{
"command": "blacklist",
"modulename": "floppy"
}
],
"disallow-additional-modules.conf": [
{
"command": "blacklist",
"modulename": "my-module"
}
]
}
}
}