2022-09-16 13:43:58 +00:00
|
|
|
#!/usr/bin/env python3
|
2022-09-19 12:16:08 +00:00
|
|
|
from fragments import garage, s3concurrent, shared, flavor
|
2022-09-16 13:43:58 +00:00
|
|
|
import sys
|
|
|
|
|
2022-09-19 12:16:08 +00:00
|
|
|
for fl in sys.argv[1:]:
|
|
|
|
if fl in flavor.garage:
|
|
|
|
garage.version = flavor.garage[fl]
|
2022-09-16 13:43:58 +00:00
|
|
|
|
|
|
|
if shared.id() == 1:
|
2022-09-23 16:47:13 +00:00
|
|
|
garage.deploy_coord()
|
2022-09-16 13:43:58 +00:00
|
|
|
s3concurrent.on_garage()
|
|
|
|
garage.delete_key()
|
|
|
|
garage.destroy()
|
|
|
|
else:
|
2022-09-23 16:47:13 +00:00
|
|
|
garage.deploy_follow()
|
2022-09-16 13:43:58 +00:00
|
|
|
garage.sync_on_key_down()
|
|
|
|
garage.destroy()
|
|
|
|
shared.log("bye")
|