Merge lp:~sankaraditya/cloud-init/topic-stanguturi-vmware-support into lp:~cloud-init-dev/cloud-init/trunk
| Status: | Merged |
|---|---|
| Merged at revision: | 1186 |
| Proposed branch: | lp:~sankaraditya/cloud-init/topic-stanguturi-vmware-support |
| Merge into: | lp:~cloud-init-dev/cloud-init/trunk |
| Diff against target: |
330 lines (+251/-10) 6 files modified
cloudinit/sources/DataSourceOVF.py (+45/-9) cloudinit/sources/helpers/vmware/imc/config_nic.py (+2/-1) cloudinit/sources/helpers/vmware/imc/guestcust_error.py (+24/-0) cloudinit/sources/helpers/vmware/imc/guestcust_event.py (+27/-0) cloudinit/sources/helpers/vmware/imc/guestcust_state.py (+25/-0) cloudinit/sources/helpers/vmware/imc/guestcust_util.py (+128/-0) |
| To merge this branch: | bzr merge lp:~sankaraditya/cloud-init/topic-stanguturi-vmware-support |
| Related bugs: |
| Reviewer | Review Type | Date Requested | Status |
|---|---|---|---|
| Scott Moser | 2016-03-08 | Needs Fixing on 2016-03-11 | |
|
Review via email:
|
|||
Commit Message
Send proper SUCCESS / FAILED events to the underlying VMware hypervisor.
Added code to customize timezone.
Added few utility functions to send events to the VMware hypervisor.
Re-factored the code little bit.
Added code to send SUCCESS event when customization succeeds.
Added code to send FAILED event if any error occurs during customization.
Description of the Change
Added some utility functions to report some events to the
underlying VMware Virtualization Platform.
- 1167. By Sankar Tanguturi <stanguturi@stanguturi-rhel> on 2016-03-10
-
- Fixed few issues with return values form util.subp()
- Added a new utility method to send a RPC for enabling NICS
- Modified DataSourceOVF.py to enable nics.
- Executed ./tools/run-pep8 and no issues were reported.
| Sankar Tanguturi (sankaraditya) wrote : | # |
| Scott Moser (smoser) wrote : | # |
some initial comments. have not had time to fully review.
| Sankar Tanguturi (sankaraditya) wrote : | # |
> some initial comments. have not had time to fully review.
Thanks Scott. I executed 'bzr merge' in my branch and resolved all the conflicts. Do I need to execute 'bzr commit' and 'bzr push' after resolving?
- 1168. By Sankar Tanguturi <stanguturi@stanguturi-rhel> on 2016-03-11
-
- Executed 'bzr merge' and resolved all the conflicts.
- Now my branch is identical to trunk.dist - 1169. By Sankar Tanguturi <stanguturi@stanguturi-rhel> on 2016-03-11
-
- Fixed few pep8 and flake8 issues.
- Changed the really long 'from ... import ...' statements.
| Sankar Tanguturi (sankaraditya) wrote : | # |
Fixed the merge issues. Fixed the pep8 and flake8 issues. Updated the diff. Thanks
- 1170. By Sankar Tanguturi <stanguturi@stanguturi-rhel> on 2016-03-16
-
- Added the code to customize timezone.


Fixed few issues. Added new utility function. No pep8 errors are reported. Updated the diff. Thanks.