Skip to main content

org.osbuild.dnf.module-config

Write DNF module configuration.

This stage allows writing DNF module configurations. These files are which are used by DNF to determine enabled modules.

Schema 1

{}

Schema 2

{
"options": {
"additionalProperties": false,
"description": "DNF configuration.",
"properties": {
"conf": {
"additionalProperties": false,
"type": "object",
"description": "DNF module configuration values.",
"properties": {
"name": {
"type": "string"
},
"stream": {
"type": "string"
},
"state": {
"type": "string"
},
"profiles": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}