forked from Deuxfleurs/mknet
24 lines
547 B
Python
Executable file
24 lines
547 B
Python
Executable file
#!/usr/bin/env python3
|
|
from fragments import garage, s3billion, shared, flavor
|
|
import sys, os
|
|
|
|
for fl in sys.argv[1:]:
|
|
if fl in flavor.garage:
|
|
garage.version = flavor.garage[fl]
|
|
|
|
#os.environ['BATCH_COUNT'] = "2"
|
|
shared.exec("ulimit -n 65535")
|
|
conf_root = {
|
|
"db_engine": "lmdb",
|
|
}
|
|
|
|
if shared.id() == 1:
|
|
garage.deploy_coord(uroot=conf_root)
|
|
s3billion.on_garage()
|
|
garage.delete_key()
|
|
garage.destroy()
|
|
else:
|
|
garage.deploy_follow(uroot=conf_root)
|
|
garage.sync_on_key_down()
|
|
garage.destroy()
|
|
shared.log("bye")
|