18 lines
470 B
Python
Executable file
18 lines
470 B
Python
Executable file
#!/usr/bin/env python3
|
|
from fragments import garage, s3lat, shared
|
|
import sys
|
|
|
|
for flavor in sys.argv[1:]:
|
|
if flavor in garage.version_flavor:
|
|
garage.version = garage.version_flavor[flavor]
|
|
|
|
if shared.id() == 1:
|
|
garage.deploy_coord(version=garage.version)
|
|
s3concurrent.on_garage()
|
|
garage.delete_key()
|
|
garage.destroy()
|
|
else:
|
|
garage.deploy_follow(version=garage.version)
|
|
garage.sync_on_key_down()
|
|
garage.destroy()
|
|
shared.log("bye")
|