forked from vmware/photon
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cloud-init: Fix netmask conversion issue
If cloud config file has netmask as follows: address: 150.0.0.5 netmask: 255.255.255.0 (dotted netmask) Then cloud-init should convert this into CIDR as follows: address: 150.0.0.5/24 Change-Id: I4aa6ae02cbe0539b7dede667a09f66c7598c9045 Reviewed-on: http://photon-jenkins.eng.vmware.com:8082/6868 Tested-by: michellew <[email protected]> Reviewed-by: Dweep Advani <[email protected]>
- Loading branch information
Showing
2 changed files
with
8 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
Name: cloud-init | ||
Version: 0.7.9 | ||
Release: 14%{?dist} | ||
Release: 15%{?dist} | ||
Summary: Cloud instance init scripts | ||
Group: System Environment/Base | ||
License: GPLv3 | ||
|
@@ -138,6 +138,8 @@ rm -rf $RPM_BUILD_ROOT | |
|
||
|
||
%changelog | ||
* Thu Mar 14 2019 Ajay Kaher <[email protected]> 0.7.9-15 | ||
- Fix netmask conversion from dotted to cidr | ||
* Wed Feb 28 2018 Anish Swaminathan <[email protected]> 0.7.9-14 | ||
- Add support for systemd constructs for azure DS | ||
* Mon Oct 16 2017 Vinay Kulkarni <[email protected]> 0.7.9-13 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters