-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_mirror.py
executable file
·51 lines (41 loc) · 1.29 KB
/
run_mirror.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
import sys
import os
#sys.path.append('/home/blah/libexec') ...
import inspect
import mirror
if __name__ == '__main__':
invalid_args = False
verbose = False
dry_run = False
modules = []
for arg in sys.argv[1:]:
if arg == '-v':
verbose = True
elif arg == '-n':
dry_run = True
elif arg[0] == '-':
invalid_args = True
else:
modules.append(arg)
if len(modules) == 0 or invalid_args:
print "USAGE: %s [-v] [-n] <mirror names>" % sys.argv[0]
else:
if mirror.is_disabled():
print "Mirroring disabled: skipping ", ' + '.join(modules)
sys.exit(-1)
os.nice(10)
for name in modules:
if mirror.get_lock(name):
mirror_imp = __import__("mirror", fromlist=[name])
runner_module = getattr(mirror_imp, name)
for module_name in dir(runner_module):
item = getattr(runner_module, module_name)
if inspect.isclass(item) and item != mirror.MirrorRunner and issubclass(item, mirror.MirrorRunner):
if item != mirror.APTMirrorRunner and item != mirror.RsyncMirrorRunner:
if verbose:
print "Running", item
runner = item()
runner.run(verbose=verbose, dry_run=dry_run)
else:
print "Skipping", name