diff options
| -rw-r--r-- | ChangeLog | 1 | ||||
| -rw-r--r-- | cloudinit/sources/DataSourceSmartOS.py | 2 | 
2 files changed, 2 insertions, 1 deletions
| @@ -6,6 +6,7 @@   - fix power_state_change config module so that example works.  Improve     its documentation and add reference to 'timeout'   - support apt-add-archive with 'cloud-archive:' format.  (LP: #1244355) + - Change SmartOS verb for availability zone (LP: #1249124)  0.7.3:   - fix omnibus chef installer (LP: #1182265) [Chris Wing]   - small fix for OVF datasource for iso transport on non-iso9660 filesystem diff --git a/cloudinit/sources/DataSourceSmartOS.py b/cloudinit/sources/DataSourceSmartOS.py index 2b4386b7..551b20c4 100644 --- a/cloudinit/sources/DataSourceSmartOS.py +++ b/cloudinit/sources/DataSourceSmartOS.py @@ -46,7 +46,7 @@ SMARTOS_ATTRIB_MAP = {      'user-data': ('user-data', False),      'iptables_disable': ('iptables_disable', True),      'motd_sys_info': ('motd_sys_info', True), -    'availability_zone': ('region', True), +    'availability_zone': ('datacenter_name', True),  }  DS_NAME = 'SmartOS' | 
