forked from sig_core/toolkit
nazunalika
d845b95e80
Finish regular reposync functionality, leave notes about i686 Start podman reposync functionality
19 lines
462 B
Python
Executable File
19 lines
462 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# This is intended for doing "full" syncs, not periodic update syncs.
|
|
|
|
from common import *
|
|
import argparse
|
|
from util import Checks
|
|
from util import RepoSync
|
|
|
|
rlvars = rldict['9']
|
|
r = Checks(rlvars, config['arch'])
|
|
r.check_valid_arch()
|
|
|
|
a = RepoSync(rlvars, config, major="9", repo="ResilientStorage", parallel=False, ignore_debug=True, ignore_source=True)
|
|
a.run()
|
|
#a.generate_conf()
|
|
#somedir = a.generate_compose_dirs()
|
|
#print(a.sync())
|