58 lines
1.8 KiB
Python
Executable File
58 lines
1.8 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# This script can be called to do single syncs or full on syncs.
|
|
|
|
import argparse
|
|
from common import *
|
|
from util import Checks
|
|
from util import RepoSync
|
|
|
|
#rlvars = rldict['9']
|
|
#r = Checks(rlvars, config['arch'])
|
|
#r.check_valid_arch()
|
|
|
|
# Start up the parser baby
|
|
parser = argparse.ArgumentParser(description="Peridot Sync and Compose")
|
|
|
|
# All of our options
|
|
parser.add_argument('--release', type=str, help="Major Release Version", required=True)
|
|
parser.add_argument('--repo', type=str, help="Repository name")
|
|
parser.add_argument('--arch', type=str, help="Architecture")
|
|
parser.add_argument('--ignore-debug', action='store_true')
|
|
parser.add_argument('--ignore-source', action='store_true')
|
|
parser.add_argument('--repoclosure', action='store_true')
|
|
parser.add_argument('--skip-all', action='store_true')
|
|
parser.add_argument('--dry-run', action='store_true')
|
|
parser.add_argument('--full-run', action='store_true')
|
|
parser.add_argument('--no-fail', action='store_true')
|
|
# I am aware this is confusing, I want podman to be the default option
|
|
parser.add_argument('--simple', action='store_false')
|
|
parser.add_argument('--logger', type=str)
|
|
|
|
# Parse them
|
|
results = parser.parse_args()
|
|
|
|
rlvars = rldict[results.release]
|
|
r = Checks(rlvars, config['arch'])
|
|
r.check_valid_arch()
|
|
|
|
# Send them and do whatever I guess
|
|
a = RepoSync(
|
|
rlvars,
|
|
config,
|
|
major=results.release,
|
|
repo=results.repo,
|
|
arch=results.arch,
|
|
ignore_debug=results.ignore_debug,
|
|
ignore_source=results.ignore_source,
|
|
repoclosure=results.repoclosure,
|
|
skip_all=results.skip_all,
|
|
parallel=results.simple,
|
|
dryrun=results.dry_run,
|
|
fullrun=results.full_run,
|
|
nofail=results.no_fail,
|
|
logger=results.logger
|
|
)
|
|
|
|
a.run()
|