Fix bogus check, leftover from ec2

This commit is contained in:
Anders Ingemann 2013-08-11 18:27:27 +02:00
parent e5d3b4ac65
commit fbae8fa17c

View file

@ -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'