Change-Id: I7fd4eb1495f876c204ba59a2dfcc39fa16c1b291
Reviewed-on: http://photon-jenkins.eng.vmware.com:8082/1737
Tested-by: gerrit-photon <photon-checkins@vmware.com>
Reviewed-by: suezzelur <anishs@vmware.com>
| ... | ... |
@@ -1,6 +1,6 @@ |
| 1 | 1 |
Name: cloud-init |
| 2 | 2 |
Version: 0.7.6 |
| 3 |
-Release: 12%{?dist}
|
|
| 3 |
+Release: 13%{?dist}
|
|
| 4 | 4 |
Summary: Cloud instance init scripts |
| 5 | 5 |
Group: System Environment/Base |
| 6 | 6 |
License: GPLv3 |
| ... | ... |
@@ -129,27 +129,29 @@ rm -rf $RPM_BUILD_ROOT |
| 129 | 129 |
|
| 130 | 130 |
|
| 131 | 131 |
%changelog |
| 132 |
+* Tue Nov 22 2016 Kumar Kaushik <kaushikk@vmware.com> 0.7.6-13 |
|
| 133 |
+- Adding flag for vmware customization in config. |
|
| 132 | 134 |
* Tue Nov 1 2016 Divya Thaluru <dthaluru@vmware.com> 0.7.6-12 |
| 133 | 135 |
- Fixed logic to not restart services after upgrade |
| 134 | 136 |
* Mon Oct 24 2016 Divya Thaluru <dthaluru@vmware.com> 0.7.6-11 |
| 135 | 137 |
- Enabled ssh module in cloud-init |
| 136 | 138 |
* Thu May 26 2016 Divya Thaluru <dthaluru@vmware.com> 0.7.6-10 |
| 137 | 139 |
- Fixed logic to restart the active services after upgrade |
| 138 |
-* Tue May 24 2016 Priyesh Padmavilasom <ppadmavilasom@vmware.com> 0.7.6-9 |
|
| 139 |
-- GA - Bump release of all rpms |
|
| 140 |
+* Tue May 24 2016 Priyesh Padmavilasom <ppadmavilasom@vmware.com> 0.7.6-9 |
|
| 141 |
+- GA - Bump release of all rpms |
|
| 140 | 142 |
* Tue May 3 2016 Divya Thaluru <dthaluru@vmware.com> 0.7.6-8 |
| 141 | 143 |
- Clean up post, preun, postun sections in spec file. |
| 142 | 144 |
* Thu Dec 10 2015 Xiaolin Li <xiaolinl@vmware.com> |
| 143 | 145 |
- Add systemd to Requires and BuildRequires. |
| 144 |
-* Thu Sep 17 2015 Kumar Kaushik <kaushikk@vmware.com> |
|
| 145 |
-- Removing netstat and replacing with ip route. |
|
| 146 |
-* Tue Aug 11 2015 Kumar Kaushik <kaushikk@vmware.com> |
|
| 147 |
-- VCA initial password issue fix. |
|
| 148 |
-* Thu Jun 25 2015 Kumar Kaushik <kaushikk@vmware.com> |
|
| 149 |
-- Removing systemd-service.patch. No longer needed. |
|
| 150 |
-* Thu Jun 18 2015 Vinay Kulkarni <kulkarniv@vmware.com> |
|
| 151 |
-- Add patch to enable logging to /var/log/cloud-init.log |
|
| 152 |
-* Mon May 18 2015 Touseef Liaqat <tliaqat@vmware.com> |
|
| 153 |
-- Update according to UsrMove. |
|
| 154 |
-* Wed Mar 04 2015 Mahmoud Bassiouny <mbassiouny@vmware.com> |
|
| 155 |
-- Initial packaging for Photon |
|
| 146 |
+* Thu Sep 17 2015 Kumar Kaushik <kaushikk@vmware.com> |
|
| 147 |
+- Removing netstat and replacing with ip route. |
|
| 148 |
+* Tue Aug 11 2015 Kumar Kaushik <kaushikk@vmware.com> |
|
| 149 |
+- VCA initial password issue fix. |
|
| 150 |
+* Thu Jun 25 2015 Kumar Kaushik <kaushikk@vmware.com> |
|
| 151 |
+- Removing systemd-service.patch. No longer needed. |
|
| 152 |
+* Thu Jun 18 2015 Vinay Kulkarni <kulkarniv@vmware.com> |
|
| 153 |
+- Add patch to enable logging to /var/log/cloud-init.log |
|
| 154 |
+* Mon May 18 2015 Touseef Liaqat <tliaqat@vmware.com> |
|
| 155 |
+- Update according to UsrMove. |
|
| 156 |
+* Wed Mar 04 2015 Mahmoud Bassiouny <mbassiouny@vmware.com> |
|
| 157 |
+- Initial packaging for Photon |
| ... | ... |
@@ -12,6 +12,9 @@ users: |
| 12 | 12 |
# will get a message to login instead as the above $user (ubuntu) |
| 13 | 13 |
disable_root: false |
| 14 | 14 |
|
| 15 |
+#Vmware guest customization. |
|
| 16 |
+disable_vmware_customization: true |
|
| 17 |
+ |
|
| 15 | 18 |
# This will cause the set+update hostname module to not operate (if true) |
| 16 | 19 |
preserve_hostname: false |
| 17 | 20 |
|