Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 1 | import os |
2 | import base64 | ||||
3 | from syncstep import SyncStep | ||||
4 | |||||
5 | class OpenStackSyncStep: | ||||
6 | """ PlanetStack Sync step for copying data to OpenStack | ||||
7 | """ | ||||
8 | |||||
9 | def __init__(self, **args): | ||||
10 | super(SyncStep,self).__init__(**args) | ||||
11 | return | ||||
12 | |||||
Sapan Bhatia | 13c7f11 | 2013-09-02 14:19:35 -0400 | [diff] [blame] | 13 | |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 14 | |
15 | |||||
16 | def __call__(self): | ||||
17 | return self.call() |