2022-05-22 06:20:15 +00:00
|
|
|
#!/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()
|
|
|
|
|
2022-05-24 01:12:11 +00:00
|
|
|
a = RepoSync(rlvars, config, major="9", repo="ResilientStorage", parallel=True, ignore_debug=True, ignore_source=True)
|
2022-05-22 06:20:15 +00:00
|
|
|
a.run()
|
|
|
|
#a.generate_conf()
|
|
|
|
#somedir = a.generate_compose_dirs()
|
|
|
|
#print(a.sync())
|