Merge pull request #5 from jpic/lxd_container_contrib

s/_needs_to_change_config/_needs_to_change_container_config/
reviewable/pr18780/r1
Hiroaki Nakamura 9 years ago committed by GitHub
commit 58b94aecac

@ -546,16 +546,16 @@ class LxdContainerManagement(object):
'devices': old_metadata['devices'], 'devices': old_metadata['devices'],
'profiles': old_metadata['profiles'] 'profiles': old_metadata['profiles']
} }
if self._needs_to_change_config('architecture'): if self._needs_to_change_container_config('architecture'):
body_json['architecture'] = self.config['architecture'] body_json['architecture'] = self.config['architecture']
if self._needs_to_change_config('config'): if self._needs_to_change_container_config('config'):
for k, v in self.config['config'].items(): for k, v in self.config['config'].items():
body_json['config'][k] = v body_json['config'][k] = v
if self._needs_to_change_config('ephemeral'): if self._needs_to_change_container_config('ephemeral'):
body_json['ephemeral'] = self.config['ephemeral'] body_json['ephemeral'] = self.config['ephemeral']
if self._needs_to_change_config('devices'): if self._needs_to_change_container_config('devices'):
body_json['devices'] = self.config['devices'] body_json['devices'] = self.config['devices']
if self._needs_to_change_config('profiles'): if self._needs_to_change_container_config('profiles'):
body_json['profiles'] = self.config['profiles'] body_json['profiles'] = self.config['profiles']
self._operate_and_wait('PUT', '/1.0/containers/{0}'.format(self.name), body_json=body_json) self._operate_and_wait('PUT', '/1.0/containers/{0}'.format(self.name), body_json=body_json)
self.actions.append('apply_container_configs') self.actions.append('apply_container_configs')

Loading…
Cancel
Save