cloudstack: fix user_data gathering, must not be in for loop
This commit is contained in:
parent
db33fcf89a
commit
90d0828b1a
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ class CloudStackFacts(object):
|
|||
if not filter:
|
||||
for key,path in self.fact_paths.iteritems():
|
||||
result[key] = self._fetch(CS_METADATA_BASE_URL + "/" + path)
|
||||
result['cloudstack_user_data'] = self._get_user_data_json()
|
||||
result['cloudstack_user_data'] = self._get_user_data_json()
|
||||
else:
|
||||
if filter == 'cloudstack_user_data':
|
||||
result['cloudstack_user_data'] = self._get_user_data_json()
|
||||
|
|
Loading…
Reference in a new issue