23 lines
636 B
Python
Executable file
23 lines
636 B
Python
Executable file
#!/usr/bin/env python3
|
|
from fragments import garage, s3lat, shared
|
|
import sys
|
|
|
|
garage_version_flavor = {
|
|
"garage-v0.7": "v0.7.3",
|
|
"garage-v0.8": "89b8087ba81c508ba382aa6c9cb6bb3afa6a43c8"
|
|
}
|
|
garage_version = garage_version_flavor["garage-v0.7"]
|
|
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)
|
|
s3lat.on_garage()
|
|
garage.delete_key()
|
|
garage.destroy()
|
|
else:
|
|
garage.deploy_follow(version=garage_version)
|
|
garage.sync_on_key_down()
|
|
garage.destroy()
|
|
shared.log("bye")
|