forked from pool/cloud-init
Accepting request 853763 from Cloud:Tools
Automatic submission by obs-autosubmit OBS-URL: https://build.opensuse.org/request/show/853763 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/cloud-init?expand=0&rev=76
This commit is contained in:
commit
65bba0838b
11
cloud-init-azure-def-usr-pass.patch
Normal file
11
cloud-init-azure-def-usr-pass.patch
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
--- cloudinit/sources/DataSourceAzure.py.orig
|
||||||
|
+++ cloudinit/sources/DataSourceAzure.py
|
||||||
|
@@ -1206,7 +1206,7 @@ def read_azure_ovf(contents):
|
||||||
|
if password:
|
||||||
|
defuser['lock_passwd'] = False
|
||||||
|
if DEF_PASSWD_REDACTION != password:
|
||||||
|
- defuser['passwd'] = encrypt_pass(password)
|
||||||
|
+ defuser['passwd'] = cfg['password'] = encrypt_pass(password)
|
||||||
|
|
||||||
|
if defuser:
|
||||||
|
cfg['system_info'] = {'default_user': defuser}
|
@ -10,7 +10,7 @@ Index: cloudinit/distros/opensuse.py
|
|||||||
|
|
||||||
from cloudinit import helpers
|
from cloudinit import helpers
|
||||||
from cloudinit import log as logging
|
from cloudinit import log as logging
|
||||||
@@ -174,7 +175,140 @@ class Distro(distros.Distro):
|
@@ -174,7 +175,147 @@ class Distro(distros.Distro):
|
||||||
util.write_file(out_fn, str(conf), 0o644)
|
util.write_file(out_fn, str(conf), 0o644)
|
||||||
|
|
||||||
def _write_network_config(self, netconfig):
|
def _write_network_config(self, netconfig):
|
||||||
@ -34,6 +34,7 @@ Index: cloudinit/distros/opensuse.py
|
|||||||
+ subnets = config.get('subnets', [])
|
+ subnets = config.get('subnets', [])
|
||||||
+ config_routes = ''
|
+ config_routes = ''
|
||||||
+ has_default_route = False
|
+ has_default_route = False
|
||||||
|
+ seen_default_gateway = None
|
||||||
+ for subnet in subnets:
|
+ for subnet in subnets:
|
||||||
+ # Render the default gateway if it is present
|
+ # Render the default gateway if it is present
|
||||||
+ gateway = subnet.get('gateway')
|
+ gateway = subnet.get('gateway')
|
||||||
@ -42,6 +43,8 @@ Index: cloudinit/distros/opensuse.py
|
|||||||
+ ['default', gateway, '-', '-\n']
|
+ ['default', gateway, '-', '-\n']
|
||||||
+ )
|
+ )
|
||||||
+ has_default_route = True
|
+ has_default_route = True
|
||||||
|
+ if not seen_default_gateway:
|
||||||
|
+ seen_default_gateway = gateway
|
||||||
+ # Render subnet routes
|
+ # Render subnet routes
|
||||||
+ routes = subnet.get('routes', [])
|
+ routes = subnet.get('routes', [])
|
||||||
+ for route in routes:
|
+ for route in routes:
|
||||||
@ -58,7 +61,11 @@ Index: cloudinit/distros/opensuse.py
|
|||||||
+ 'Skipping route; has no prefix "%s"', dest
|
+ 'Skipping route; has no prefix "%s"', dest
|
||||||
+ )
|
+ )
|
||||||
+ continue
|
+ continue
|
||||||
+ if dest == 'default' and has_default_route:
|
+ if (
|
||||||
|
+ dest == 'default' and
|
||||||
|
+ has_default_route and
|
||||||
|
+ gateway == seen_default_gateway
|
||||||
|
+ ):
|
||||||
+ dest_info = dest
|
+ dest_info = dest
|
||||||
+ if gateway:
|
+ if gateway:
|
||||||
+ dest_info = ' '.join([dest, gateway, '-', '-'])
|
+ dest_info = ' '.join([dest, gateway, '-', '-'])
|
||||||
|
@ -1,3 +1,28 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Nov 24 21:14:56 UTC 2020 - Robert Schweikert <rjschwei@suse.com>
|
||||||
|
|
||||||
|
- Add wget as a requirement (bsc#1178029)
|
||||||
|
+ wget is used in the CloudStack data source
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Nov 24 12:40:00 UTC 2020 - Robert Schweikert <rjschwei@suse.com>
|
||||||
|
|
||||||
|
- Add cloud-init-azure-def-usr-pass.patch (bsc#1179150, bsc#1179151)
|
||||||
|
+ Properly set the password for the default user in all circumstances
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Nov 13 19:44:11 UTC 2020 - Robert Schweikert <rjschwei@suse.com>
|
||||||
|
|
||||||
|
- Patch the full package version into the cloud-init version file
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Nov 10 11:39:09 UTC 2020 - Robert Schweikert <rjschwei@suse.com>
|
||||||
|
|
||||||
|
- Update cloud-init-write-routes.patch (bsc#1177526)
|
||||||
|
+ Fix missing default route when dual stack network setup is used. Once
|
||||||
|
a default route was configured for Ipv6 or IPv4 the default route
|
||||||
|
configuration for the othre protocol was skipped.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Oct 17 10:25:30 UTC 2020 - Robert Schweikert <rjschwei@suse.com>
|
Sat Oct 17 10:25:30 UTC 2020 - Robert Schweikert <rjschwei@suse.com>
|
||||||
|
|
||||||
@ -16,6 +41,7 @@ Fri Jul 24 19:55:40 UTC 2020 - Robert Schweikert <rjschwei@suse.com>
|
|||||||
- cloud-init-long-pass.patch
|
- cloud-init-long-pass.patch
|
||||||
- cloud-init-mix-static-dhcp.patch
|
- cloud-init-mix-static-dhcp.patch
|
||||||
+ Remove patches build switched to Python 3 for all distributions
|
+ Remove patches build switched to Python 3 for all distributions
|
||||||
|
(jsc#PM-2335)
|
||||||
- cloud-init-python2-sigpipe.patch
|
- cloud-init-python2-sigpipe.patch
|
||||||
- cloud-init-template-py2.patch
|
- cloud-init-template-py2.patch
|
||||||
+ Add
|
+ Add
|
||||||
|
@ -38,6 +38,8 @@ Patch56: cloud-init-sysconf-path.patch
|
|||||||
Patch57: cloud-init-no-tempnet-oci.patch
|
Patch57: cloud-init-no-tempnet-oci.patch
|
||||||
Patch58: cloud-init-after-kvp.diff
|
Patch58: cloud-init-after-kvp.diff
|
||||||
Patch59: cloud-init-recognize-hpc.patch
|
Patch59: cloud-init-recognize-hpc.patch
|
||||||
|
# FIXME https://github.com/canonical/cloud-init/commit/eea754492f074e00b601cf77aa278e3623857c5a
|
||||||
|
Patch60: cloud-init-azure-def-usr-pass.patch
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: filesystem
|
BuildRequires: filesystem
|
||||||
# pkg-config is needed to find correct systemd unit dir
|
# pkg-config is needed to find correct systemd unit dir
|
||||||
@ -83,6 +85,7 @@ Requires: python3-six
|
|||||||
Requires: python3-xml
|
Requires: python3-xml
|
||||||
Requires: sudo
|
Requires: sudo
|
||||||
Requires: util-linux
|
Requires: util-linux
|
||||||
|
Requires: wget
|
||||||
Requires: wicked-service
|
Requires: wicked-service
|
||||||
Requires: cloud-init-config = %configver
|
Requires: cloud-init-config = %configver
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -134,6 +137,12 @@ Documentation and examples for cloud-init tools
|
|||||||
%patch57
|
%patch57
|
||||||
%patch58 -p1
|
%patch58 -p1
|
||||||
%patch59
|
%patch59
|
||||||
|
%patch60
|
||||||
|
# patch in the full version to version.py
|
||||||
|
version_pys=$(find . -name version.py -type f)
|
||||||
|
[ -n "$version_pys" ] ||
|
||||||
|
{ echo "failed to find 'version.py' to patch with version." 1>&2; exit 1; }
|
||||||
|
sed -i "s,@@PACKAGED_VERSION@@,%{version}-%{release}," $version_pys
|
||||||
|
|
||||||
%build
|
%build
|
||||||
python3 setup.py build
|
python3 setup.py build
|
||||||
|
Loading…
Reference in New Issue
Block a user