sources/dnf: add documentation and schema

Since the dnf stage is not used anymore only a placeholder schema
and documentation is added.
This commit is contained in:
Christian Kellner 2020-05-29 15:51:11 +02:00 committed by David Rheinsberg
parent 42ef470740
commit f967bf7164

View file

@ -1,9 +1,18 @@
#!/usr/bin/python3
"""
Download packages via dnf
"""
import json
import sys
SCHEMA = """
"additionalProperties": true
"""
def main(options, sources, secrets):
repos = options.get("repos", {})
repo_secrets = secrets.get("repos", {})