forked from Deuxfleurs/mknet
18 lines
417 B
Python
Executable file
18 lines
417 B
Python
Executable file
#!/usr/bin/env python3
|
|
from fragments import garage, s3ttfb, shared, flavor
|
|
import sys
|
|
|
|
for fl in sys.argv[1:]:
|
|
if fl in flavor.garage:
|
|
garage.version = flavor.garage[fl]
|
|
|
|
if shared.id() == 1:
|
|
garage.deploy_coord(gw = [ 'node1' ])
|
|
s3ttfb.on_garage()
|
|
garage.delete_key()
|
|
garage.destroy()
|
|
else:
|
|
garage.deploy_follow()
|
|
garage.sync_on_key_down()
|
|
garage.destroy()
|
|
shared.log("bye")
|