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:
parent
42ef470740
commit
f967bf7164
1 changed files with 9 additions and 0 deletions
|
|
@ -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", {})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue