mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-10-07 17:40:30 +00:00
Fix bogus check, leftover from ec2
This commit is contained in:
parent
e5d3b4ac65
commit
fbae8fa17c
1 changed files with 1 additions and 1 deletions
|
@ -11,5 +11,5 @@ class Manifest(base.Manifest):
|
|||
def parse(self, data):
|
||||
super(Manifest, self).parse(data)
|
||||
self.image = data['image']
|
||||
if 'loopback_dir' not in self.volume and self.volume['backing'].lower() == 's3':
|
||||
if 'loopback_dir' not in self.volume:
|
||||
self.volume['loopback_dir'] = '/tmp'
|
||||
|
|
Loading…
Add table
Reference in a new issue