From c60dcdee662fa585e0ef611c5cd5c48078259a68 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Oct 30 2018 05:01:09 +0000 Subject: import cloud-init-18.2-1.el7 --- diff --git a/.cloud-init.metadata b/.cloud-init.metadata index 6948e77..5f02606 100644 --- a/.cloud-init.metadata +++ b/.cloud-init.metadata @@ -1 +1 @@ -3b4345267e72e28b877e2e3f0735c1f672674cfc SOURCES/cloud-init-0.7.9.tar.gz +703864e79a15335d1e2552866b63d25f55f8a555 SOURCES/cloud-init-18.2.tar.gz diff --git a/.gitignore b/.gitignore index 6a72b4f..b4be453 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -SOURCES/cloud-init-0.7.9.tar.gz +SOURCES/cloud-init-18.2.tar.gz diff --git a/SOURCES/0001-Add-initial-redhat-setup.patch b/SOURCES/0001-Add-initial-redhat-setup.patch new file mode 100644 index 0000000..6191910 --- /dev/null +++ b/SOURCES/0001-Add-initial-redhat-setup.patch @@ -0,0 +1,482 @@ +From d700165bae742fe63b535bd86aed9a5067fe8fbb Mon Sep 17 00:00:00 2001 +From: Miroslav Rezanina +Date: Thu, 31 May 2018 16:45:23 +0200 +Subject: Add initial redhat setup + +--- + cloudinit/config/cc_chef.py | 6 +- + cloudinit/settings.py | 7 +- + redhat/.gitignore | 1 + + redhat/Makefile | 71 ++++++++ + redhat/Makefile.common | 35 ++++ + redhat/cloud-init-tmpfiles.conf | 1 + + redhat/cloud-init.spec.template | 306 +++++++++++++++++++++++++++++++ + redhat/rpmbuild/BUILD/.gitignore | 3 + + redhat/rpmbuild/RPMS/.gitignore | 3 + + redhat/rpmbuild/SOURCES/.gitignore | 3 + + redhat/rpmbuild/SPECS/.gitignore | 3 + + redhat/rpmbuild/SRPMS/.gitignore | 3 + + redhat/scripts/frh.py | 27 +++ + redhat/scripts/git-backport-diff | 327 ++++++++++++++++++++++++++++++++++ + redhat/scripts/git-compile-check | 215 ++++++++++++++++++++++ + redhat/scripts/process-patches.sh | 73 ++++++++ + redhat/scripts/tarball_checksum.sh | 3 + + rhel/README.rhel | 5 + + rhel/cloud-init-tmpfiles.conf | 1 + + rhel/cloud.cfg | 66 +++++++ + rhel/systemd/cloud-config.service | 18 ++ + rhel/systemd/cloud-config.target | 11 ++ + rhel/systemd/cloud-final.service | 19 ++ + rhel/systemd/cloud-init-local.service | 31 ++++ + rhel/systemd/cloud-init.service | 25 +++ + setup.py | 64 +------ + tools/read-version | 19 +- + 27 files changed, 1262 insertions(+), 84 deletions(-) + create mode 100644 redhat/.gitignore + create mode 100644 redhat/Makefile + create mode 100644 redhat/Makefile.common + create mode 100644 redhat/cloud-init-tmpfiles.conf + create mode 100644 redhat/cloud-init.spec.template + create mode 100644 redhat/rpmbuild/BUILD/.gitignore + create mode 100644 redhat/rpmbuild/RPMS/.gitignore + create mode 100644 redhat/rpmbuild/SOURCES/.gitignore + create mode 100644 redhat/rpmbuild/SPECS/.gitignore + create mode 100644 redhat/rpmbuild/SRPMS/.gitignore + create mode 100755 redhat/scripts/frh.py + create mode 100755 redhat/scripts/git-backport-diff + create mode 100755 redhat/scripts/git-compile-check + create mode 100755 redhat/scripts/process-patches.sh + create mode 100755 redhat/scripts/tarball_checksum.sh + create mode 100644 rhel/README.rhel + create mode 100644 rhel/cloud-init-tmpfiles.conf + create mode 100644 rhel/cloud.cfg + create mode 100644 rhel/systemd/cloud-config.service + create mode 100644 rhel/systemd/cloud-config.target + create mode 100644 rhel/systemd/cloud-final.service + create mode 100644 rhel/systemd/cloud-init-local.service + create mode 100644 rhel/systemd/cloud-init.service + +diff --git a/cloudinit/config/cc_chef.py b/cloudinit/config/cc_chef.py +index 46abedd..fe7bda8 100644 +--- a/cloudinit/config/cc_chef.py ++++ b/cloudinit/config/cc_chef.py +@@ -33,7 +33,7 @@ file). + + chef: + directories: (defaulting to /etc/chef, /var/log/chef, /var/lib/chef, +- /var/cache/chef, /var/backups/chef, /var/run/chef) ++ /var/cache/chef, /var/backups/chef, /run/chef) + validation_cert: (optional string to be written to file validation_key) + special value 'system' means set use existing file + validation_key: (optional the path for validation_cert. default +@@ -88,7 +88,7 @@ CHEF_DIRS = tuple([ + '/var/lib/chef', + '/var/cache/chef', + '/var/backups/chef', +- '/var/run/chef', ++ '/run/chef', + ]) + REQUIRED_CHEF_DIRS = tuple([ + '/etc/chef', +@@ -112,7 +112,7 @@ CHEF_RB_TPL_DEFAULTS = { + 'json_attribs': CHEF_FB_PATH, + 'file_cache_path': "/var/cache/chef", + 'file_backup_path': "/var/backups/chef", +- 'pid_file': "/var/run/chef/client.pid", ++ 'pid_file': "/run/chef/client.pid", + 'show_time': True, + } + CHEF_RB_TPL_BOOL_KEYS = frozenset(['show_time']) +diff --git a/cloudinit/settings.py b/cloudinit/settings.py +index dde5749..a5a1eec 100644 +--- a/cloudinit/settings.py ++++ b/cloudinit/settings.py +@@ -43,13 +43,16 @@ CFG_BUILTIN = { + ], + 'def_log_file': '/var/log/cloud-init.log', + 'log_cfgs': [], +- 'syslog_fix_perms': ['syslog:adm', 'root:adm', 'root:wheel'], ++ 'mount_default_fields': [None, None, 'auto', 'defaults,nofail', '0', '2'], ++ 'ssh_deletekeys': False, ++ 'ssh_genkeytypes': [], ++ 'syslog_fix_perms': [], + 'system_info': { + 'paths': { + 'cloud_dir': '/var/lib/cloud', + 'templates_dir': '/etc/cloud/templates/', + }, +- 'distro': 'ubuntu', ++ 'distro': 'rhel', + 'network': {'renderers': None}, + }, + 'vendor_data': {'enabled': True, 'prefix': []}, +diff --git a/rhel/README.rhel b/rhel/README.rhel +new file mode 100644 +index 0000000..aa29630 +--- /dev/null ++++ b/rhel/README.rhel +@@ -0,0 +1,5 @@ ++The following cloud-init modules are currently unsupported on this OS: ++ - apt_update_upgrade ('apt_update', 'apt_upgrade', 'apt_mirror', 'apt_preserve_sources_list', 'apt_old_mirror', 'apt_sources', 'debconf_selections', 'packages' options) ++ - byobu ('byobu_by_default' option) ++ - chef ++ - grub_dpkg +diff --git a/rhel/cloud-init-tmpfiles.conf b/rhel/cloud-init-tmpfiles.conf +new file mode 100644 +index 0000000..0c6d2a3 +--- /dev/null ++++ b/rhel/cloud-init-tmpfiles.conf +@@ -0,0 +1 @@ ++d /run/cloud-init 0700 root root - - +diff --git a/rhel/cloud.cfg b/rhel/cloud.cfg +new file mode 100644 +index 0000000..986f241 +--- /dev/null ++++ b/rhel/cloud.cfg +@@ -0,0 +1,66 @@ ++users: ++ - default ++ ++disable_root: 1 ++ssh_pwauth: 0 ++ ++mount_default_fields: [~, ~, 'auto', 'defaults,nofail', '0', '2'] ++resize_rootfs_tmp: /dev ++ssh_deletekeys: 0 ++ssh_genkeytypes: ~ ++syslog_fix_perms: ~ ++ ++cloud_init_modules: ++ - migrator ++ - bootcmd ++ - write-files ++ - growpart ++ - resizefs ++ - set_hostname ++ - update_hostname ++ - update_etc_hosts ++ - rsyslog ++ - users-groups ++ - ssh ++ ++cloud_config_modules: ++ - mounts ++ - locale ++ - set-passwords ++ - rh_subscription ++ - yum-add-repo ++ - package-update-upgrade-install ++ - timezone ++ - puppet ++ - chef ++ - salt-minion ++ - mcollective ++ - disable-ec2-metadata ++ - runcmd ++ ++cloud_final_modules: ++ - rightscale_userdata ++ - scripts-per-once ++ - scripts-per-boot ++ - scripts-per-instance ++ - scripts-user ++ - ssh-authkey-fingerprints ++ - keys-to-console ++ - phone-home ++ - final-message ++ ++system_info: ++ default_user: ++ name: cloud-user ++ lock_passwd: true ++ gecos: Cloud User ++ groups: [wheel, adm, systemd-journal] ++ sudo: ["ALL=(ALL) NOPASSWD:ALL"] ++ shell: /bin/bash ++ distro: rhel ++ paths: ++ cloud_dir: /var/lib/cloud ++ templates_dir: /etc/cloud/templates ++ ssh_svcname: sshd ++ ++# vim:syntax=yaml +diff --git a/rhel/systemd/cloud-config.service b/rhel/systemd/cloud-config.service +new file mode 100644 +index 0000000..12ca9df +--- /dev/null ++++ b/rhel/systemd/cloud-config.service +@@ -0,0 +1,18 @@ ++[Unit] ++Description=Apply the settings specified in cloud-config ++After=network-online.target cloud-config.target ++Wants=network-online.target cloud-config.target ++ConditionPathExists=!/etc/cloud/cloud-init.disabled ++ConditionKernelCommandLine=!cloud-init=disabled ++ ++[Service] ++Type=oneshot ++ExecStart=/usr/bin/cloud-init modules --mode=config ++RemainAfterExit=yes ++TimeoutSec=0 ++ ++# Output needs to appear in instance console output ++StandardOutput=journal+console ++ ++[Install] ++WantedBy=multi-user.target +diff --git a/rhel/systemd/cloud-config.target b/rhel/systemd/cloud-config.target +new file mode 100644 +index 0000000..ae9b7d0 +--- /dev/null ++++ b/rhel/systemd/cloud-config.target +@@ -0,0 +1,11 @@ ++# cloud-init normally emits a "cloud-config" upstart event to inform third ++# parties that cloud-config is available, which does us no good when we're ++# using systemd. cloud-config.target serves as this synchronization point ++# instead. Services that would "start on cloud-config" with upstart can ++# instead use "After=cloud-config.target" and "Wants=cloud-config.target" ++# as appropriate. ++ ++[Unit] ++Description=Cloud-config availability ++Wants=cloud-init-local.service cloud-init.service ++After=cloud-init-local.service cloud-init.service +diff --git a/rhel/systemd/cloud-final.service b/rhel/systemd/cloud-final.service +new file mode 100644 +index 0000000..32a83d8 +--- /dev/null ++++ b/rhel/systemd/cloud-final.service +@@ -0,0 +1,19 @@ ++[Unit] ++Description=Execute cloud user/final scripts ++After=network-online.target cloud-config.service rc-local.service ++Wants=network-online.target cloud-config.service ++ConditionPathExists=!/etc/cloud/cloud-init.disabled ++ConditionKernelCommandLine=!cloud-init=disabled ++ ++[Service] ++Type=oneshot ++ExecStart=/usr/bin/cloud-init modules --mode=final ++RemainAfterExit=yes ++TimeoutSec=0 ++KillMode=process ++ ++# Output needs to appear in instance console output ++StandardOutput=journal+console ++ ++[Install] ++WantedBy=multi-user.target +diff --git a/rhel/systemd/cloud-init-local.service b/rhel/systemd/cloud-init-local.service +new file mode 100644 +index 0000000..656eddb +--- /dev/null ++++ b/rhel/systemd/cloud-init-local.service +@@ -0,0 +1,31 @@ ++[Unit] ++Description=Initial cloud-init job (pre-networking) ++DefaultDependencies=no ++Wants=network-pre.target ++After=systemd-remount-fs.service ++Requires=dbus.socket ++After=dbus.socket ++Before=NetworkManager.service network.service ++Before=network-pre.target ++Before=shutdown.target ++Before=firewalld.target ++Conflicts=shutdown.target ++RequiresMountsFor=/var/lib/cloud ++ConditionPathExists=!/etc/cloud/cloud-init.disabled ++ConditionKernelCommandLine=!cloud-init=disabled ++ ++[Service] ++Type=oneshot ++ExecStartPre=/bin/mkdir -p /run/cloud-init ++ExecStartPre=/sbin/restorecon /run/cloud-init ++ExecStartPre=/usr/bin/touch /run/cloud-init/enabled ++ExecStart=/usr/bin/cloud-init init --local ++ExecStart=/bin/touch /run/cloud-init/network-config-ready ++RemainAfterExit=yes ++TimeoutSec=0 ++ ++# Output needs to appear in instance console output ++StandardOutput=journal+console ++ ++[Install] ++WantedBy=multi-user.target +diff --git a/rhel/systemd/cloud-init.service b/rhel/systemd/cloud-init.service +new file mode 100644 +index 0000000..68fc5f1 +--- /dev/null ++++ b/rhel/systemd/cloud-init.service +@@ -0,0 +1,25 @@ ++[Unit] ++Description=Initial cloud-init job (metadata service crawler) ++Wants=cloud-init-local.service ++Wants=sshd-keygen.service ++Wants=sshd.service ++After=cloud-init-local.service ++After=NetworkManager.service network.service ++Before=network-online.target ++Before=sshd-keygen.service ++Before=sshd.service ++Before=systemd-user-sessions.service ++ConditionPathExists=!/etc/cloud/cloud-init.disabled ++ConditionKernelCommandLine=!cloud-init=disabled ++ ++[Service] ++Type=oneshot ++ExecStart=/usr/bin/cloud-init init ++RemainAfterExit=yes ++TimeoutSec=0 ++ ++# Output needs to appear in instance console output ++StandardOutput=journal+console ++ ++[Install] ++WantedBy=multi-user.target +diff --git a/setup.py b/setup.py +index bc3f52a..47cf842 100755 +--- a/setup.py ++++ b/setup.py +@@ -125,11 +125,6 @@ INITSYS_FILES = { + 'sysvinit_deb': [f for f in glob('sysvinit/debian/*') if is_f(f)], + 'sysvinit_openrc': [f for f in glob('sysvinit/gentoo/*') if is_f(f)], + 'sysvinit_suse': [f for f in glob('sysvinit/suse/*') if is_f(f)], +- 'systemd': [render_tmpl(f) +- for f in (glob('systemd/*.tmpl') + +- glob('systemd/*.service') + +- glob('systemd/*.target')) if is_f(f)], +- 'systemd.generators': [f for f in glob('systemd/*-generator') if is_f(f)], + 'upstart': [f for f in glob('upstart/*') if is_f(f)], + } + INITSYS_ROOTS = { +@@ -138,9 +133,6 @@ INITSYS_ROOTS = { + 'sysvinit_deb': 'etc/init.d', + 'sysvinit_openrc': 'etc/init.d', + 'sysvinit_suse': 'etc/init.d', +- 'systemd': pkg_config_read('systemd', 'systemdsystemunitdir'), +- 'systemd.generators': pkg_config_read('systemd', +- 'systemdsystemgeneratordir'), + 'upstart': 'etc/init/', + } + INITSYS_TYPES = sorted([f.partition(".")[0] for f in INITSYS_ROOTS.keys()]) +@@ -178,47 +170,6 @@ class MyEggInfo(egg_info): + return ret + + +-# TODO: Is there a better way to do this?? +-class InitsysInstallData(install): +- init_system = None +- user_options = install.user_options + [ +- # This will magically show up in member variable 'init_sys' +- ('init-system=', None, +- ('init system(s) to configure (%s) [default: None]' % +- (", ".join(INITSYS_TYPES)))), +- ] +- +- def initialize_options(self): +- install.initialize_options(self) +- self.init_system = "" +- +- def finalize_options(self): +- install.finalize_options(self) +- +- if self.init_system and isinstance(self.init_system, str): +- self.init_system = self.init_system.split(",") +- +- if len(self.init_system) == 0: +- self.init_system = ['systemd'] +- +- bad = [f for f in self.init_system if f not in INITSYS_TYPES] +- if len(bad) != 0: +- raise DistutilsArgError( +- "Invalid --init-system: %s" % (','.join(bad))) +- +- for system in self.init_system: +- # add data files for anything that starts with '.' +- datakeys = [k for k in INITSYS_ROOTS +- if k.partition(".")[0] == system] +- for k in datakeys: +- if not INITSYS_FILES[k]: +- continue +- self.distribution.data_files.append( +- (INITSYS_ROOTS[k], INITSYS_FILES[k])) +- # Force that command to reinitalize (with new file list) +- self.distribution.reinitialize_command('install_data', True) +- +- + if not in_virtualenv(): + USR = "/" + USR + ETC = "/" + ETC +@@ -228,11 +179,9 @@ if not in_virtualenv(): + INITSYS_ROOTS[k] = "/" + INITSYS_ROOTS[k] + + data_files = [ +- (ETC + '/cloud', [render_tmpl("config/cloud.cfg.tmpl")]), + (ETC + '/cloud/cloud.cfg.d', glob('config/cloud.cfg.d/*')), + (ETC + '/cloud/templates', glob('templates/*')), +- (USR_LIB_EXEC + '/cloud-init', ['tools/ds-identify', +- 'tools/uncloud-init', ++ (USR_LIB_EXEC + '/cloud-init', ['tools/uncloud-init', + 'tools/write-ssh-key-fingerprints']), + (USR + '/share/doc/cloud-init', [f for f in glob('doc/*') if is_f(f)]), + (USR + '/share/doc/cloud-init/examples', +@@ -244,15 +193,8 @@ if os.uname()[0] != 'FreeBSD': + data_files.extend([ + (ETC + '/NetworkManager/dispatcher.d/', + ['tools/hook-network-manager']), +- (ETC + '/dhcp/dhclient-exit-hooks.d/', ['tools/hook-dhclient']), +- (LIB + '/udev/rules.d', [f for f in glob('udev/*.rules')]) ++ ('/usr/lib/udev/rules.d', [f for f in glob('udev/*.rules')]) + ]) +-# Use a subclass for install that handles +-# adding on the right init system configuration files +-cmdclass = { +- 'install': InitsysInstallData, +- 'egg_info': MyEggInfo, +-} + + requirements = read_requires() + +@@ -267,8 +209,6 @@ setuptools.setup( + scripts=['tools/cloud-init-per'], + license='Dual-licensed under GPLv3 or Apache 2.0', + data_files=data_files, +- install_requires=requirements, +- cmdclass=cmdclass, + entry_points={ + 'console_scripts': [ + 'cloud-init = cloudinit.cmd.main:main' +diff --git a/tools/read-version b/tools/read-version +index 3ea9e66..d43cc8f 100755 +--- a/tools/read-version ++++ b/tools/read-version +@@ -65,23 +65,8 @@ output_json = '--json' in sys.argv + src_version = ci_version.version_string() + version_long = None + +-if is_gitdir(_tdir) and which("git"): +- flags = [] +- if use_tags: +- flags = ['--tags'] +- cmd = ['git', 'describe', '--abbrev=8', '--match=[0-9]*'] + flags +- +- version = tiny_p(cmd).strip() +- +- if not version.startswith(src_version): +- sys.stderr.write("git describe version (%s) differs from " +- "cloudinit.version (%s)\n" % (version, src_version)) +- sys.exit(1) +- +- version_long = tiny_p(cmd + ["--long"]).strip() +-else: +- version = src_version +- version_long = None ++version = src_version ++version_long = None + + # version is X.Y.Z[+xxx.gHASH] + # version_long is None or X.Y.Z-xxx-gHASH +-- +1.8.3.1 + diff --git a/SOURCES/0001-configuration-changes-for-RHEL-package.patch b/SOURCES/0001-configuration-changes-for-RHEL-package.patch deleted file mode 100644 index 97e4a09..0000000 --- a/SOURCES/0001-configuration-changes-for-RHEL-package.patch +++ /dev/null @@ -1,197 +0,0 @@ -From 0efc7b53fd849b1faea9fca1ecc85dfe384de035 Mon Sep 17 00:00:00 2001 -From: Lars Kellogg-Stedman -Date: Thu, 1 Dec 2016 19:40:36 -0500 -Subject: [PATCH] configuration changes for RHEL package - -remove python dependencies from setup.py (because we handle these via -packages instead) and make any changes to default values to handle -RHEL environments. - -install README and configfiles for rhel. - -X-downstream-only: true ---- - cloudinit/config/cc_chef.py | 6 ++-- - cloudinit/settings.py | 7 +++-- - rhel/README.rhel | 5 ++++ - rhel/cloud-init-tmpfiles.conf | 1 + - rhel/cloud.cfg | 66 +++++++++++++++++++++++++++++++++++++++++++ - setup.py | 4 +-- - 6 files changed, 81 insertions(+), 8 deletions(-) - create mode 100644 rhel/README.rhel - create mode 100644 rhel/cloud-init-tmpfiles.conf - create mode 100644 rhel/cloud.cfg - -diff --git a/cloudinit/config/cc_chef.py b/cloudinit/config/cc_chef.py -index f6564e5..38f01b7 100644 ---- a/cloudinit/config/cc_chef.py -+++ b/cloudinit/config/cc_chef.py -@@ -33,7 +33,7 @@ file). - - chef: - directories: (defaulting to /etc/chef, /var/log/chef, /var/lib/chef, -- /var/cache/chef, /var/backups/chef, /var/run/chef) -+ /var/cache/chef, /var/backups/chef, /run/chef) - validation_cert: (optional string to be written to file validation_key) - special value 'system' means set use existing file - validation_key: (optional the path for validation_cert. default -@@ -85,7 +85,7 @@ CHEF_DIRS = tuple([ - '/var/lib/chef', - '/var/cache/chef', - '/var/backups/chef', -- '/var/run/chef', -+ '/run/chef', - ]) - REQUIRED_CHEF_DIRS = tuple([ - '/etc/chef', -@@ -109,7 +109,7 @@ CHEF_RB_TPL_DEFAULTS = { - 'json_attribs': CHEF_FB_PATH, - 'file_cache_path': "/var/cache/chef", - 'file_backup_path': "/var/backups/chef", -- 'pid_file': "/var/run/chef/client.pid", -+ 'pid_file': "/run/chef/client.pid", - 'show_time': True, - } - CHEF_RB_TPL_BOOL_KEYS = frozenset(['show_time']) -diff --git a/cloudinit/settings.py b/cloudinit/settings.py -index b1fdd31..6d31bb6 100644 ---- a/cloudinit/settings.py -+++ b/cloudinit/settings.py -@@ -37,13 +37,16 @@ CFG_BUILTIN = { - ], - 'def_log_file': '/var/log/cloud-init.log', - 'log_cfgs': [], -- 'syslog_fix_perms': ['syslog:adm', 'root:adm'], -+ 'mount_default_fields': [None, None, 'auto', 'defaults,nofail', '0', '2'], -+ 'ssh_deletekeys': False, -+ 'ssh_genkeytypes': [], -+ 'syslog_fix_perms': [], - 'system_info': { - 'paths': { - 'cloud_dir': '/var/lib/cloud', - 'templates_dir': '/etc/cloud/templates/', - }, -- 'distro': 'ubuntu', -+ 'distro': 'rhel', - }, - 'vendor_data': {'enabled': True, 'prefix': []}, - } -diff --git a/rhel/README.rhel b/rhel/README.rhel -new file mode 100644 -index 0000000..aa29630 ---- /dev/null -+++ b/rhel/README.rhel -@@ -0,0 +1,5 @@ -+The following cloud-init modules are currently unsupported on this OS: -+ - apt_update_upgrade ('apt_update', 'apt_upgrade', 'apt_mirror', 'apt_preserve_sources_list', 'apt_old_mirror', 'apt_sources', 'debconf_selections', 'packages' options) -+ - byobu ('byobu_by_default' option) -+ - chef -+ - grub_dpkg -diff --git a/rhel/cloud-init-tmpfiles.conf b/rhel/cloud-init-tmpfiles.conf -new file mode 100644 -index 0000000..0c6d2a3 ---- /dev/null -+++ b/rhel/cloud-init-tmpfiles.conf -@@ -0,0 +1 @@ -+d /run/cloud-init 0700 root root - - -diff --git a/rhel/cloud.cfg b/rhel/cloud.cfg -new file mode 100644 -index 0000000..986f241 ---- /dev/null -+++ b/rhel/cloud.cfg -@@ -0,0 +1,66 @@ -+users: -+ - default -+ -+disable_root: 1 -+ssh_pwauth: 0 -+ -+mount_default_fields: [~, ~, 'auto', 'defaults,nofail', '0', '2'] -+resize_rootfs_tmp: /dev -+ssh_deletekeys: 0 -+ssh_genkeytypes: ~ -+syslog_fix_perms: ~ -+ -+cloud_init_modules: -+ - migrator -+ - bootcmd -+ - write-files -+ - growpart -+ - resizefs -+ - set_hostname -+ - update_hostname -+ - update_etc_hosts -+ - rsyslog -+ - users-groups -+ - ssh -+ -+cloud_config_modules: -+ - mounts -+ - locale -+ - set-passwords -+ - rh_subscription -+ - yum-add-repo -+ - package-update-upgrade-install -+ - timezone -+ - puppet -+ - chef -+ - salt-minion -+ - mcollective -+ - disable-ec2-metadata -+ - runcmd -+ -+cloud_final_modules: -+ - rightscale_userdata -+ - scripts-per-once -+ - scripts-per-boot -+ - scripts-per-instance -+ - scripts-user -+ - ssh-authkey-fingerprints -+ - keys-to-console -+ - phone-home -+ - final-message -+ -+system_info: -+ default_user: -+ name: cloud-user -+ lock_passwd: true -+ gecos: Cloud User -+ groups: [wheel, adm, systemd-journal] -+ sudo: ["ALL=(ALL) NOPASSWD:ALL"] -+ shell: /bin/bash -+ distro: rhel -+ paths: -+ cloud_dir: /var/lib/cloud -+ templates_dir: /etc/cloud/templates -+ ssh_svcname: sshd -+ -+# vim:syntax=yaml -diff --git a/setup.py b/setup.py -index 0403607..cc20c60 100755 ---- a/setup.py -+++ b/setup.py -@@ -167,7 +167,6 @@ else: - (ETC + '/cloud/cloud.cfg.d', glob('config/cloud.cfg.d/*')), - (ETC + '/cloud/templates', glob('templates/*')), - (ETC + '/NetworkManager/dispatcher.d/', ['tools/hook-network-manager']), -- (ETC + '/dhcp/dhclient-exit-hooks.d/', ['tools/hook-dhclient']), - (USR_LIB_EXEC + '/cloud-init', ['tools/uncloud-init', - 'tools/write-ssh-key-fingerprints']), - (USR + '/share/doc/cloud-init', [f for f in glob('doc/*') if is_f(f)]), -@@ -175,7 +174,7 @@ else: - [f for f in glob('doc/examples/*') if is_f(f)]), - (USR + '/share/doc/cloud-init/examples/seed', - [f for f in glob('doc/examples/seed/*') if is_f(f)]), -- (LIB + '/udev/rules.d', [f for f in glob('udev/*.rules')]), -+ ('/usr/lib/udev/rules.d', [f for f in glob('udev/*.rules')]), - ] - # Use a subclass for install that handles - # adding on the right init system configuration files -@@ -199,7 +198,6 @@ setuptools.setup( - scripts=['tools/cloud-init-per'], - license='Dual-licensed under GPLv3 or Apache 2.0', - data_files=data_files, -- install_requires=requirements, - cmdclass=cmdclass, - entry_points={ - 'console_scripts': [ diff --git a/SOURCES/0002-Do-not-write-NM_CONTROLLED-no-in-generated-interface.patch b/SOURCES/0002-Do-not-write-NM_CONTROLLED-no-in-generated-interface.patch new file mode 100644 index 0000000..6caf58c --- /dev/null +++ b/SOURCES/0002-Do-not-write-NM_CONTROLLED-no-in-generated-interface.patch @@ -0,0 +1,307 @@ +From 6183f8a282703eaab967355a63fd5b116bb21f0b Mon Sep 17 00:00:00 2001 +From: Miroslav Rezanina +Date: Thu, 31 May 2018 19:37:55 +0200 +Subject: Do not write NM_CONTROLLED=no in generated interface config files + +X-downstream-only: true +Signed-off-by: Ryan McCabe +--- + cloudinit/net/sysconfig.py | 1 - + tests/unittests/test_distros/test_netconfig.py | 4 ---- + tests/unittests/test_net.py | 30 -------------------------- + 3 files changed, 35 deletions(-) + +diff --git a/cloudinit/net/sysconfig.py b/cloudinit/net/sysconfig.py +index 39d89c4..cefb5c5 100644 +--- a/cloudinit/net/sysconfig.py ++++ b/cloudinit/net/sysconfig.py +@@ -233,7 +233,6 @@ class Renderer(renderer.Renderer): + iface_defaults = tuple([ + ('ONBOOT', True), + ('USERCTL', False), +- ('NM_CONTROLLED', False), + ('BOOTPROTO', 'none'), + ]) + +diff --git a/tests/unittests/test_distros/test_netconfig.py b/tests/unittests/test_distros/test_netconfig.py +index 1c2e45f..2f69455 100644 +--- a/tests/unittests/test_distros/test_netconfig.py ++++ b/tests/unittests/test_distros/test_netconfig.py +@@ -479,7 +479,6 @@ DEVICE=eth0 + GATEWAY=192.168.1.254 + IPADDR=192.168.1.5 + NETMASK=255.255.255.0 +-NM_CONTROLLED=no + ONBOOT=yes + TYPE=Ethernet + USERCTL=no +@@ -496,7 +495,6 @@ USERCTL=no + # + BOOTPROTO=dhcp + DEVICE=eth1 +-NM_CONTROLLED=no + ONBOOT=yes + TYPE=Ethernet + USERCTL=no +@@ -630,7 +628,6 @@ DEVICE=eth0 + IPV6ADDR=2607:f0d0:1002:0011::2/64 + IPV6INIT=yes + IPV6_DEFAULTGW=2607:f0d0:1002:0011::1 +-NM_CONTROLLED=no + ONBOOT=yes + TYPE=Ethernet + USERCTL=no +@@ -645,7 +642,6 @@ USERCTL=no + # + BOOTPROTO=dhcp + DEVICE=eth1 +-NM_CONTROLLED=no + ONBOOT=yes + TYPE=Ethernet + USERCTL=no +diff --git a/tests/unittests/test_net.py b/tests/unittests/test_net.py +index c12a487..95318ed 100644 +--- a/tests/unittests/test_net.py ++++ b/tests/unittests/test_net.py +@@ -144,7 +144,6 @@ GATEWAY=172.19.3.254 + HWADDR=fa:16:3e:ed:9a:59 + IPADDR=172.19.1.34 + NETMASK=255.255.252.0 +-NM_CONTROLLED=no + ONBOOT=yes + TYPE=Ethernet + USERCTL=no +@@ -212,7 +211,6 @@ IPADDR=172.19.1.34 + IPADDR1=10.0.0.10 + NETMASK=255.255.252.0 + NETMASK1=255.255.255.0 +-NM_CONTROLLED=no + ONBOOT=yes + TYPE=Ethernet + USERCTL=no +@@ -302,7 +300,6 @@ IPV6ADDR_SECONDARIES="2001:DB9::10/64 2001:DB10::10/64" + IPV6INIT=yes + IPV6_DEFAULTGW=2001:DB8::1 + NETMASK=255.255.252.0 +-NM_CONTROLLED=no + ONBOOT=yes + TYPE=Ethernet + USERCTL=no +@@ -417,7 +414,6 @@ NETWORK_CONFIGS = { + BOOTPROTO=none + DEVICE=eth1 + HWADDR=cf:d6:af:48:e8:80 +- NM_CONTROLLED=no + ONBOOT=yes + TYPE=Ethernet + USERCTL=no"""), +@@ -432,7 +428,6 @@ NETWORK_CONFIGS = { + HWADDR=c0:d6:9f:2c:e8:80 + IPADDR=192.168.21.3 + NETMASK=255.255.255.0 +- NM_CONTROLLED=no + ONBOOT=yes + TYPE=Ethernet + USERCTL=no"""), +@@ -544,7 +539,6 @@ NETWORK_CONFIGS = { + IPV6ADDR=2001:1::1/64 + IPV6INIT=yes + NETMASK=255.255.255.0 +- NM_CONTROLLED=no + ONBOOT=yes + TYPE=Ethernet + USERCTL=no +@@ -745,14 +739,12 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true + DHCPV6C=yes + IPV6INIT=yes + MACADDR=aa:bb:cc:dd:ee:ff +- NM_CONTROLLED=no + ONBOOT=yes + TYPE=Bond + USERCTL=no"""), + 'ifcfg-bond0.200': textwrap.dedent("""\ + BOOTPROTO=dhcp + DEVICE=bond0.200 +- NM_CONTROLLED=no + ONBOOT=yes + PHYSDEV=bond0 + TYPE=Ethernet +@@ -768,7 +760,6 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true + IPV6INIT=yes + IPV6_DEFAULTGW=2001:4800:78ff:1b::1 + NETMASK=255.255.255.0 +- NM_CONTROLLED=no + ONBOOT=yes + PRIO=22 + STP=no +@@ -778,7 +769,6 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true + BOOTPROTO=none + DEVICE=eth0 + HWADDR=c0:d6:9f:2c:e8:80 +- NM_CONTROLLED=no + ONBOOT=yes + TYPE=Ethernet + USERCTL=no"""), +@@ -795,7 +785,6 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true + MTU=1500 + NETMASK=255.255.255.0 + NETMASK1=255.255.255.0 +- NM_CONTROLLED=no + ONBOOT=yes + PHYSDEV=eth0 + TYPE=Ethernet +@@ -806,7 +795,6 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true + DEVICE=eth1 + HWADDR=aa:d6:9f:2c:e8:80 + MASTER=bond0 +- NM_CONTROLLED=no + ONBOOT=yes + SLAVE=yes + TYPE=Ethernet +@@ -816,7 +804,6 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true + DEVICE=eth2 + HWADDR=c0:bb:9f:2c:e8:80 + MASTER=bond0 +- NM_CONTROLLED=no + ONBOOT=yes + SLAVE=yes + TYPE=Ethernet +@@ -826,7 +813,6 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true + BRIDGE=br0 + DEVICE=eth3 + HWADDR=66:bb:9f:2c:e8:80 +- NM_CONTROLLED=no + ONBOOT=yes + TYPE=Ethernet + USERCTL=no"""), +@@ -835,7 +821,6 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true + BRIDGE=br0 + DEVICE=eth4 + HWADDR=98:bb:9f:2c:e8:80 +- NM_CONTROLLED=no + ONBOOT=yes + TYPE=Ethernet + USERCTL=no"""), +@@ -843,7 +828,6 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true + BOOTPROTO=dhcp + DEVICE=eth5 + HWADDR=98:bb:9f:2c:e8:8a +- NM_CONTROLLED=no + ONBOOT=no + TYPE=Ethernet + USERCTL=no""") +@@ -1125,7 +1109,6 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true + IPV6INIT=yes + NETMASK=255.255.255.0 + NETMASK1=255.255.255.0 +- NM_CONTROLLED=no + ONBOOT=yes + TYPE=Bond + USERCTL=no +@@ -1135,7 +1118,6 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true + DEVICE=bond0s0 + HWADDR=aa:bb:cc:dd:e8:00 + MASTER=bond0 +- NM_CONTROLLED=no + ONBOOT=yes + SLAVE=yes + TYPE=Ethernet +@@ -1153,7 +1135,6 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true + DEVICE=bond0s1 + HWADDR=aa:bb:cc:dd:e8:01 + MASTER=bond0 +- NM_CONTROLLED=no + ONBOOT=yes + SLAVE=yes + TYPE=Ethernet +@@ -1190,7 +1171,6 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true + BOOTPROTO=none + DEVICE=en0 + HWADDR=aa:bb:cc:dd:e8:00 +- NM_CONTROLLED=no + ONBOOT=yes + TYPE=Ethernet + USERCTL=no"""), +@@ -1206,7 +1186,6 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true + IPV6_DEFAULTGW=2001:1::1 + NETMASK=255.255.255.0 + NETMASK1=255.255.255.0 +- NM_CONTROLLED=no + ONBOOT=yes + PHYSDEV=en0 + TYPE=Ethernet +@@ -1247,7 +1226,6 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true + DEVICE=br0 + IPADDR=192.168.2.2 + NETMASK=255.255.255.0 +- NM_CONTROLLED=no + ONBOOT=yes + PRIO=22 + STP=no +@@ -1261,7 +1239,6 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true + HWADDR=52:54:00:12:34:00 + IPV6ADDR=2001:1::100/96 + IPV6INIT=yes +- NM_CONTROLLED=no + ONBOOT=yes + TYPE=Ethernet + USERCTL=no +@@ -1273,7 +1250,6 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true + HWADDR=52:54:00:12:34:01 + IPV6ADDR=2001:1::101/96 + IPV6INIT=yes +- NM_CONTROLLED=no + ONBOOT=yes + TYPE=Ethernet + USERCTL=no +@@ -1347,7 +1323,6 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true + HWADDR=52:54:00:12:34:00 + IPADDR=192.168.1.2 + NETMASK=255.255.255.0 +- NM_CONTROLLED=no + ONBOOT=no + TYPE=Ethernet + USERCTL=no +@@ -1357,7 +1332,6 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true + DEVICE=eth1 + HWADDR=52:54:00:12:34:aa + MTU=1480 +- NM_CONTROLLED=no + ONBOOT=yes + TYPE=Ethernet + USERCTL=no +@@ -1366,7 +1340,6 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true + BOOTPROTO=none + DEVICE=eth2 + HWADDR=52:54:00:12:34:ff +- NM_CONTROLLED=no + ONBOOT=no + TYPE=Ethernet + USERCTL=no +@@ -1639,7 +1612,6 @@ class TestSysConfigRendering(CiTestCase): + BOOTPROTO=dhcp + DEVICE=eth1000 + HWADDR=07-1C-C6-75-A4-BE +-NM_CONTROLLED=no + ONBOOT=yes + TYPE=Ethernet + USERCTL=no +@@ -1759,7 +1731,6 @@ GATEWAY=10.0.2.2 + HWADDR=52:54:00:12:34:00 + IPADDR=10.0.2.15 + NETMASK=255.255.255.0 +-NM_CONTROLLED=no + ONBOOT=yes + TYPE=Ethernet + USERCTL=no +@@ -1780,7 +1751,6 @@ USERCTL=no + # + BOOTPROTO=dhcp + DEVICE=eth0 +-NM_CONTROLLED=no + ONBOOT=yes + TYPE=Ethernet + USERCTL=no +-- +1.8.3.1 + diff --git a/SOURCES/0002-do-not-use-git-to-determine-version.patch b/SOURCES/0002-do-not-use-git-to-determine-version.patch deleted file mode 100644 index 5a2137e..0000000 --- a/SOURCES/0002-do-not-use-git-to-determine-version.patch +++ /dev/null @@ -1,43 +0,0 @@ -From 13d7d4bf4a94b8cc95beccee0aad96d73d246acf Mon Sep 17 00:00:00 2001 -From: Lars Kellogg-Stedman -Date: Thu, 12 Jan 2017 16:21:10 -0500 -Subject: [PATCH] do not use git to determine version - -trying to use git to determine the current cloud-init version will -fail when building the package. - -X-downstream-only: true ---- - tools/read-version | 19 ++----------------- - 1 file changed, 2 insertions(+), 17 deletions(-) - -diff --git a/tools/read-version b/tools/read-version -index 3b30b49..1ce3ac6 100755 ---- a/tools/read-version -+++ b/tools/read-version -@@ -52,23 +52,8 @@ output_json = '--json' in sys.argv - src_version = ci_version.version_string() - version_long = None - --if os.path.isdir(os.path.join(_tdir, ".git")) and which("git"): -- flags = [] -- if use_tags: -- flags = ['--tags'] -- cmd = ['git', 'describe'] + flags -- -- version = tiny_p(cmd).strip() -- -- if not version.startswith(src_version): -- sys.stderr.write("git describe version (%s) differs from " -- "cloudinit.version (%s)\n" % (version, src_version)) -- sys.exit(1) -- -- version_long = tiny_p(cmd + ["--long"]).strip() --else: -- version = src_version -- version_long = None -+version = src_version -+version_long = None - - # version is X.Y.Z[+xxx.gHASH] - # version_long is None or X.Y.Z-xxx-gHASH diff --git a/SOURCES/0003-limit-permissions-on-def_log_file.patch b/SOURCES/0003-limit-permissions-on-def_log_file.patch new file mode 100644 index 0000000..fee94f4 --- /dev/null +++ b/SOURCES/0003-limit-permissions-on-def_log_file.patch @@ -0,0 +1,66 @@ +From 29742cf728256aa041b122988b3ed3a5008d4ff3 Mon Sep 17 00:00:00 2001 +From: Lars Kellogg-Stedman +Date: Fri, 7 Apr 2017 18:50:54 -0400 +Subject: limit permissions on def_log_file + +This sets a default mode of 0600 on def_log_file, and makes this +configurable via the def_log_file_mode option in cloud.cfg. + +LP: #1541196 +Resolves: rhbz#1424612 +X-approved-upstream: true +--- + cloudinit/settings.py | 1 + + cloudinit/stages.py | 3 ++- + doc/examples/cloud-config.txt | 4 ++++ + 3 files changed, 7 insertions(+), 1 deletion(-) + +diff --git a/cloudinit/settings.py b/cloudinit/settings.py +index a5a1eec..4efe6b6 100644 +--- a/cloudinit/settings.py ++++ b/cloudinit/settings.py +@@ -42,6 +42,7 @@ CFG_BUILTIN = { + 'None', + ], + 'def_log_file': '/var/log/cloud-init.log', ++ 'def_log_file_mode': 0o600, + 'log_cfgs': [], + 'mount_default_fields': [None, None, 'auto', 'defaults,nofail', '0', '2'], + 'ssh_deletekeys': False, +diff --git a/cloudinit/stages.py b/cloudinit/stages.py +index bc4ebc8..40336e0 100644 +--- a/cloudinit/stages.py ++++ b/cloudinit/stages.py +@@ -145,8 +145,9 @@ class Init(object): + def _initialize_filesystem(self): + util.ensure_dirs(self._initial_subdirs()) + log_file = util.get_cfg_option_str(self.cfg, 'def_log_file') ++ log_file_mode = util.get_cfg_option_int(self.cfg, 'def_log_file_mode') + if log_file: +- util.ensure_file(log_file) ++ util.ensure_file(log_file, mode=log_file_mode) + perms = self.cfg.get('syslog_fix_perms') + if not perms: + perms = {} +diff --git a/doc/examples/cloud-config.txt b/doc/examples/cloud-config.txt +index bd84c64..99e6fdd 100644 +--- a/doc/examples/cloud-config.txt ++++ b/doc/examples/cloud-config.txt +@@ -397,10 +397,14 @@ timezone: US/Eastern + # if syslog_fix_perms is a list, it will iterate through and use the + # first pair that does not raise error. + # ++# 'def_log_file' will be created with mode 'def_log_file_mode', which ++# is specified as a numeric value and defaults to 0600. ++# + # the default values are '/var/log/cloud-init.log' and 'syslog:adm' + # the value of 'def_log_file' should match what is configured in logging + # if either is empty, then no change of ownership will be done + def_log_file: /var/log/my-logging-file.log ++def_log_file_mode: 0600 + syslog_fix_perms: syslog:root + + # you can set passwords for a user or multiple users +-- +1.8.3.1 + diff --git a/SOURCES/0003-util-teach-write_file-about-copy_mode-option.patch b/SOURCES/0003-util-teach-write_file-about-copy_mode-option.patch deleted file mode 100644 index 84a05ca..0000000 --- a/SOURCES/0003-util-teach-write_file-about-copy_mode-option.patch +++ /dev/null @@ -1,145 +0,0 @@ -From 29ed6e1c54a6ffbc3017660af5e2a81850e46b43 Mon Sep 17 00:00:00 2001 -From: Lars Kellogg-Stedman -Date: Mon, 10 Apr 2017 15:52:37 -0400 -Subject: [PATCH] util: teach write_file about copy_mode option - -On centos/fedora/rhel/derivatives, /etc/ssh/sshd_config has mode 0600, -but cloud-init unilaterally sets file modes to 0644 when no explicit -mode is passed to util.write_file. On ubuntu/debian, this file has -mode 0644. With this patch, write_file learns about the copy_mode -option, which will cause it to use the mode of the existing file by -default, falling back to the explicit mode parameter if the file does -not exist. - -LP: #1644064 -Resolves: rhbz#1295984 -(cherry picked from commit 721348a622a660b65acfdf7fdf53203b47f80748) ---- - cloudinit/atomic_helper.py | 12 +++++++++++- - cloudinit/config/cc_set_passwords.py | 3 ++- - cloudinit/util.py | 10 +++++++++- - tests/unittests/test_util.py | 33 +++++++++++++++++++++++++++++++-- - 4 files changed, 53 insertions(+), 5 deletions(-) - -diff --git a/cloudinit/atomic_helper.py b/cloudinit/atomic_helper.py -index fb2df8d..587b994 100644 ---- a/cloudinit/atomic_helper.py -+++ b/cloudinit/atomic_helper.py -@@ -2,13 +2,23 @@ - - import json - import os -+import stat - import tempfile - - _DEF_PERMS = 0o644 - - --def write_file(filename, content, mode=_DEF_PERMS, omode="wb"): -+def write_file(filename, content, mode=_DEF_PERMS, -+ omode="wb", copy_mode=False): - # open filename in mode 'omode', write content, set permissions to 'mode' -+ -+ if copy_mode: -+ try: -+ file_stat = os.stat(filename) -+ mode = stat.S_IMODE(file_stat.st_mode) -+ except OSError: -+ pass -+ - tf = None - try: - tf = tempfile.NamedTemporaryFile(dir=os.path.dirname(filename), -diff --git a/cloudinit/config/cc_set_passwords.py b/cloudinit/config/cc_set_passwords.py -index cf1f59e..2745df8 100755 ---- a/cloudinit/config/cc_set_passwords.py -+++ b/cloudinit/config/cc_set_passwords.py -@@ -174,7 +174,8 @@ def handle(_name, cfg, cloud, log, args): - pw_auth)) - - lines = [str(l) for l in new_lines] -- util.write_file(ssh_util.DEF_SSHD_CFG, "\n".join(lines)) -+ util.write_file(ssh_util.DEF_SSHD_CFG, "\n".join(lines), -+ copy_mode=True) - - try: - cmd = cloud.distro.init_cmd # Default service -diff --git a/cloudinit/util.py b/cloudinit/util.py -index 5725129..f90653d 100644 ---- a/cloudinit/util.py -+++ b/cloudinit/util.py -@@ -1732,7 +1732,7 @@ def chmod(path, mode): - os.chmod(path, real_mode) - - --def write_file(filename, content, mode=0o644, omode="wb"): -+def write_file(filename, content, mode=0o644, omode="wb", copy_mode=False): - """ - Writes a file with the given content and sets the file mode as specified. - Resotres the SELinux context if possible. -@@ -1742,6 +1742,14 @@ def write_file(filename, content, mode=0o644, omode="wb"): - @param mode: The filesystem mode to set on the file. - @param omode: The open mode used when opening the file (w, wb, a, etc.) - """ -+ -+ if copy_mode: -+ try: -+ file_stat = os.stat(filename) -+ mode = stat.S_IMODE(file_stat.st_mode) -+ except OSError: -+ pass -+ - ensure_dir(os.path.dirname(filename)) - if 'b' in omode.lower(): - content = encode_text(content) -diff --git a/tests/unittests/test_util.py b/tests/unittests/test_util.py -index ab74311..5d21b4b 100644 ---- a/tests/unittests/test_util.py -+++ b/tests/unittests/test_util.py -@@ -103,8 +103,8 @@ class TestWriteFile(helpers.TestCase): - self.assertTrue(os.path.isdir(dirname)) - self.assertTrue(os.path.isfile(path)) - -- def test_custom_mode(self): -- """Verify custom mode works properly.""" -+ def test_explicit_mode(self): -+ """Verify explicit file mode works properly.""" - path = os.path.join(self.tmp, "NewFile.txt") - contents = "Hey there" - -@@ -115,6 +115,35 @@ class TestWriteFile(helpers.TestCase): - file_stat = os.stat(path) - self.assertEqual(0o666, stat.S_IMODE(file_stat.st_mode)) - -+ def test_copy_mode_no_existing(self): -+ """Verify that file is created with mode 0o644 if copy_mode -+ is true and there is no prior existing file.""" -+ path = os.path.join(self.tmp, "NewFile.txt") -+ contents = "Hey there" -+ -+ util.write_file(path, contents, copy_mode=True) -+ -+ self.assertTrue(os.path.exists(path)) -+ self.assertTrue(os.path.isfile(path)) -+ file_stat = os.stat(path) -+ self.assertEqual(0o644, stat.S_IMODE(file_stat.st_mode)) -+ -+ def test_copy_mode_with_existing(self): -+ """Verify that file is created using mode of existing file -+ if copy_mode is true.""" -+ path = os.path.join(self.tmp, "NewFile.txt") -+ contents = "Hey there" -+ -+ open(path, 'w').close() -+ os.chmod(path, 0o666) -+ -+ util.write_file(path, contents, copy_mode=True) -+ -+ self.assertTrue(os.path.exists(path)) -+ self.assertTrue(os.path.isfile(path)) -+ file_stat = os.stat(path) -+ self.assertEqual(0o666, stat.S_IMODE(file_stat.st_mode)) -+ - def test_custom_omode(self): - """Verify custom omode works properly.""" - path = os.path.join(self.tmp, "NewFile.txt") diff --git a/SOURCES/0004-Do-not-write-NM_CONTROLLED-no-in-generated-interface.patch b/SOURCES/0004-Do-not-write-NM_CONTROLLED-no-in-generated-interface.patch deleted file mode 100644 index 990e36a..0000000 --- a/SOURCES/0004-Do-not-write-NM_CONTROLLED-no-in-generated-interface.patch +++ /dev/null @@ -1,45 +0,0 @@ -From 2a7c89dc761c6415a97e44ea5cf55885179890cd Mon Sep 17 00:00:00 2001 -From: Lars Kellogg-Stedman -Date: Thu, 1 Dec 2016 19:40:36 -0500 -Subject: [PATCH] Do not write NM_CONTROLLED=no in generated interface config - files - -Resolves: rhbz#1385172 -X-downstream-only: true ---- - cloudinit/net/sysconfig.py | 1 - - tests/unittests/test_net.py | 2 -- - 2 files changed, 3 deletions(-) - -diff --git a/cloudinit/net/sysconfig.py b/cloudinit/net/sysconfig.py -index 9be7407..3c9f2d2 100644 ---- a/cloudinit/net/sysconfig.py -+++ b/cloudinit/net/sysconfig.py -@@ -169,7 +169,6 @@ class Renderer(renderer.Renderer): - iface_defaults = tuple([ - ('ONBOOT', True), - ('USERCTL', False), -- ('NM_CONTROLLED', False), - ('BOOTPROTO', 'none'), - ]) - -diff --git a/tests/unittests/test_net.py b/tests/unittests/test_net.py -index 1090282..ce13664 100755 ---- a/tests/unittests/test_net.py -+++ b/tests/unittests/test_net.py -@@ -144,7 +144,6 @@ GATEWAY=172.19.3.254 - HWADDR=fa:16:3e:ed:9a:59 - IPADDR=172.19.1.34 - NETMASK=255.255.252.0 --NM_CONTROLLED=no - ONBOOT=yes - TYPE=Ethernet - USERCTL=no -@@ -510,7 +509,6 @@ class TestSysConfigRendering(TestCase): - BOOTPROTO=dhcp - DEVICE=eth1000 - HWADDR=07-1C-C6-75-A4-BE --NM_CONTROLLED=no - ONBOOT=yes - TYPE=Ethernet - USERCTL=no diff --git a/SOURCES/0004-remove-tee-command-from-logging-configuration.patch b/SOURCES/0004-remove-tee-command-from-logging-configuration.patch new file mode 100644 index 0000000..3aa57f5 --- /dev/null +++ b/SOURCES/0004-remove-tee-command-from-logging-configuration.patch @@ -0,0 +1,33 @@ +From 6e471f1224b1c357c86b0aa70d5e51e19eb6ffe2 Mon Sep 17 00:00:00 2001 +From: Miroslav Rezanina +Date: Thu, 31 May 2018 19:46:53 +0200 +Subject: remove 'tee' command from logging configuration + +the default logging configuration passes all cloud-init output through +'tee' in order to generate /var/log/cloud-init-output.log. This is +redundant on modern systems, since stdout/stderr are captured by +systemd and available via journalctl. + +Resolves: rhbz#1424612 +X-downstream-only: true +Signed-off-by: Ryan McCabe +--- + config/cloud.cfg.d/05_logging.cfg | 5 ----- + 1 file changed, 5 deletions(-) + +diff --git a/config/cloud.cfg.d/05_logging.cfg b/config/cloud.cfg.d/05_logging.cfg +index 937b07f..4be8866 100644 +--- a/config/cloud.cfg.d/05_logging.cfg ++++ b/config/cloud.cfg.d/05_logging.cfg +@@ -64,8 +64,3 @@ log_cfgs: + - [ *log_base, *log_file ] + # A file path can also be used. + # - /etc/log.conf +- +-# This tells cloud-init to redirect its stdout and stderr to +-# 'tee -a /var/log/cloud-init-output.log' so the user can see output +-# there without needing to look on the console. +-output: {all: '| tee -a /var/log/cloud-init-output.log'} +-- +1.8.3.1 + diff --git a/SOURCES/0005-add-power-state-change-module-to-cloud_final_modules.patch b/SOURCES/0005-add-power-state-change-module-to-cloud_final_modules.patch new file mode 100644 index 0000000..78d2088 --- /dev/null +++ b/SOURCES/0005-add-power-state-change-module-to-cloud_final_modules.patch @@ -0,0 +1,27 @@ +From 31614be664a68968291f5fcbd8c90aac112876a4 Mon Sep 17 00:00:00 2001 +From: Miroslav Rezanina +Date: Thu, 31 May 2018 19:47:44 +0200 +Subject: add power-state-change module to cloud_final_modules + +Resolves: rhbz#1252477 +X-downstream-only: true +Signed-off-by: Ryan McCabe +--- + rhel/cloud.cfg | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/rhel/cloud.cfg b/rhel/cloud.cfg +index 986f241..8644872 100644 +--- a/rhel/cloud.cfg ++++ b/rhel/cloud.cfg +@@ -48,6 +48,7 @@ cloud_final_modules: + - keys-to-console + - phone-home + - final-message ++ - power-state-change + + system_info: + default_user: +-- +1.8.3.1 + diff --git a/SOURCES/0005-url_helper-fail-gracefully-if-oauthlib-is-not-availa.patch b/SOURCES/0005-url_helper-fail-gracefully-if-oauthlib-is-not-availa.patch deleted file mode 100644 index b8c1256..0000000 --- a/SOURCES/0005-url_helper-fail-gracefully-if-oauthlib-is-not-availa.patch +++ /dev/null @@ -1,41 +0,0 @@ -From 949f87447031d8d83b8108aaa11046eb8a50650b Mon Sep 17 00:00:00 2001 -From: Lars Kellogg-Stedman -Date: Thu, 8 Dec 2016 15:24:24 -0500 -Subject: [PATCH] url_helper: fail gracefully if oauthlib is not available - -We are unable to ship python-oauthlib in RHEL. Allow imports of -url_helper to succeed even when oauthlib is unavailable. - -X-downstream-only: true ---- - cloudinit/url_helper.py | 10 +++++++++- - 1 file changed, 9 insertions(+), 1 deletion(-) - -diff --git a/cloudinit/url_helper.py b/cloudinit/url_helper.py -index 312b046..19c8148 100644 ---- a/cloudinit/url_helper.py -+++ b/cloudinit/url_helper.py -@@ -17,7 +17,11 @@ import time - from email.utils import parsedate - from functools import partial - --import oauthlib.oauth1 as oauth1 -+try: -+ import oauthlib.oauth1 as oauth1 -+except ImportError: -+ oauth1 = None -+ - from requests import exceptions - - from six.moves.urllib.parse import ( -@@ -481,6 +485,10 @@ class OauthUrlHelper(object): - - def oauth_headers(url, consumer_key, token_key, token_secret, consumer_secret, - timestamp=None): -+ -+ if oauth1 is None: -+ raise NotImplementedError('oauth support is not available') -+ - if timestamp: - timestamp = str(timestamp) - else: diff --git a/SOURCES/0006-azure-ensure-that-networkmanager-hook-script-runs.patch b/SOURCES/0006-azure-ensure-that-networkmanager-hook-script-runs.patch new file mode 100644 index 0000000..287d7d7 --- /dev/null +++ b/SOURCES/0006-azure-ensure-that-networkmanager-hook-script-runs.patch @@ -0,0 +1,63 @@ +From 06f283cfb7c632530fdd004f96cc8ba71325ebf3 Mon Sep 17 00:00:00 2001 +From: Lars Kellogg-Stedman +Date: Thu, 15 Jun 2017 12:20:39 -0400 +Subject: azure: ensure that networkmanager hook script runs + +The networkmanager hook script was failing to run due to the changes +we made to resolve rhbz#1440831. This corrects the regression by +allowing the NM hook script to run regardless of whether or not +cloud-init is "enabled". + +Resolves: rhbz#1460206 +X-downstream-only: true +--- + tools/hook-dhclient | 3 +-- + tools/hook-network-manager | 3 +-- + tools/hook-rhel.sh | 3 +-- + 3 files changed, 3 insertions(+), 6 deletions(-) + +diff --git a/tools/hook-dhclient b/tools/hook-dhclient +index 02122f3..181cd51 100755 +--- a/tools/hook-dhclient ++++ b/tools/hook-dhclient +@@ -13,8 +13,7 @@ is_azure() { + } + + is_enabled() { +- # only execute hooks if cloud-init is enabled and on azure +- [ -e /run/cloud-init/enabled ] || return 1 ++ # only execute hooks if cloud-init is running on azure + is_azure + } + +diff --git a/tools/hook-network-manager b/tools/hook-network-manager +index 67d9044..1d52cad 100755 +--- a/tools/hook-network-manager ++++ b/tools/hook-network-manager +@@ -13,8 +13,7 @@ is_azure() { + } + + is_enabled() { +- # only execute hooks if cloud-init is enabled and on azure +- [ -e /run/cloud-init/enabled ] || return 1 ++ # only execute hooks if cloud-init running on azure + is_azure + } + +diff --git a/tools/hook-rhel.sh b/tools/hook-rhel.sh +index 513a551..d75767e 100755 +--- a/tools/hook-rhel.sh ++++ b/tools/hook-rhel.sh +@@ -13,8 +13,7 @@ is_azure() { + } + + is_enabled() { +- # only execute hooks if cloud-init is enabled and on azure +- [ -e /run/cloud-init/enabled ] || return 1 ++ # only execute hooks if cloud-init is running on azure + is_azure + } + +-- +1.8.3.1 + diff --git a/SOURCES/0006-rsyslog-replace-with-stop.patch b/SOURCES/0006-rsyslog-replace-with-stop.patch deleted file mode 100644 index 11e059c..0000000 --- a/SOURCES/0006-rsyslog-replace-with-stop.patch +++ /dev/null @@ -1,32 +0,0 @@ -From b5bc8596569ba46c89247d1df5f3cd6e6a85dce1 Mon Sep 17 00:00:00 2001 -From: Joshua Powers -Date: Mon, 10 Apr 2017 16:30:33 -0700 -Subject: [PATCH] rsyslog: replace ~ with stop -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -The discard action (tilde character) has been replaced by the -“stop” RainerScript directive. It is considered more intuitive and -offers slightly better performance. - -The tilde operator was deprecated in rsyslog 7. Distributions -using rsyslog older than that will need to patch. - -LP: #1367899 -Resolves: rhbz#1315615 -(cherry picked from commit b613de733fa7cfbf94666410f252b640019be205) ---- - tools/21-cloudinit.conf | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/tools/21-cloudinit.conf b/tools/21-cloudinit.conf -index c65325c..150d800 100644 ---- a/tools/21-cloudinit.conf -+++ b/tools/21-cloudinit.conf -@@ -3,4 +3,4 @@ - - # comment out the following line to allow CLOUDINIT messages through. - # Doing so means you'll also get CLOUDINIT messages in /var/log/syslog --& ~ -+& stop diff --git a/SOURCES/0007-OpenStack-Use-timeout-and-retries-from-config-in-get.patch b/SOURCES/0007-OpenStack-Use-timeout-and-retries-from-config-in-get.patch deleted file mode 100644 index c949827..0000000 --- a/SOURCES/0007-OpenStack-Use-timeout-and-retries-from-config-in-get.patch +++ /dev/null @@ -1,113 +0,0 @@ -From c98408a2cf874435c7423a1574a9ffc81053707a Mon Sep 17 00:00:00 2001 -From: Lars Kellogg-Stedman -Date: Tue, 17 Jan 2017 08:53:22 -0500 -Subject: [PATCH] OpenStack: Use timeout and retries from config in get_data. - -This modifies get_data in DataSourceOpenStack.py to get the timeout -and retries values from the data source configuration, rather than -from keyword arguments. This permits get_data to use the same timeout -as other methods, and allows an operator to increase the timeout in -environments where the metadata service takes longer than five seconds -to respond. - -LP: #1657130 -Resolves: rhbz#1408589 -(cherry picked from commit 4cf53f1544f8f5629330eab3efef1a18255c277a) ---- - cloudinit/sources/DataSourceOpenStack.py | 15 ++++++++++++--- - tests/unittests/test_datasource/test_openstack.py | 8 ++++---- - 2 files changed, 16 insertions(+), 7 deletions(-) - -diff --git a/cloudinit/sources/DataSourceOpenStack.py b/cloudinit/sources/DataSourceOpenStack.py -index 2a58f1c..e1ea21f 100644 ---- a/cloudinit/sources/DataSourceOpenStack.py -+++ b/cloudinit/sources/DataSourceOpenStack.py -@@ -45,6 +45,7 @@ class DataSourceOpenStack(openstack.SourceMixin, sources.DataSource): - # max_wait < 0 indicates do not wait - max_wait = -1 - timeout = 10 -+ retries = 5 - - try: - max_wait = int(self.ds_cfg.get("max_wait", max_wait)) -@@ -55,7 +56,13 @@ class DataSourceOpenStack(openstack.SourceMixin, sources.DataSource): - timeout = max(0, int(self.ds_cfg.get("timeout", timeout))) - except Exception: - util.logexc(LOG, "Failed to get timeout, using %s", timeout) -- return (max_wait, timeout) -+ -+ try: -+ retries = int(self.ds_cfg.get("retries", retries)) -+ except Exception: -+ util.logexc(LOG, "Failed to get max wait. using %s", retries) -+ -+ return (max_wait, timeout, retries) - - def wait_for_metadata_service(self): - urls = self.ds_cfg.get("metadata_urls", [DEF_MD_URL]) -@@ -76,7 +83,7 @@ class DataSourceOpenStack(openstack.SourceMixin, sources.DataSource): - md_urls.append(md_url) - url2base[md_url] = url - -- (max_wait, timeout) = self._get_url_settings() -+ (max_wait, timeout, retries) = self._get_url_settings() - start_time = time.time() - avail_url = url_helper.wait_for_url(urls=md_urls, max_wait=max_wait, - timeout=timeout) -@@ -89,13 +96,15 @@ class DataSourceOpenStack(openstack.SourceMixin, sources.DataSource): - self.metadata_address = url2base.get(avail_url) - return bool(avail_url) - -- def get_data(self, retries=5, timeout=5): -+ def get_data(self): - try: - if not self.wait_for_metadata_service(): - return False - except IOError: - return False - -+ (max_wait, timeout, retries) = self._get_url_settings() -+ - try: - results = util.log_time(LOG.debug, - 'Crawl of openstack metadata service', -diff --git a/tests/unittests/test_datasource/test_openstack.py b/tests/unittests/test_datasource/test_openstack.py -index e5b6fcc..28e1833 100644 ---- a/tests/unittests/test_datasource/test_openstack.py -+++ b/tests/unittests/test_datasource/test_openstack.py -@@ -232,7 +232,7 @@ class TestOpenStackDataSource(test_helpers.HttprettyTestCase): - None, - helpers.Paths({})) - self.assertIsNone(ds_os.version) -- found = ds_os.get_data(timeout=0.1, retries=0) -+ found = ds_os.get_data() - self.assertTrue(found) - self.assertEqual(2, ds_os.version) - md = dict(ds_os.metadata) -@@ -256,7 +256,7 @@ class TestOpenStackDataSource(test_helpers.HttprettyTestCase): - None, - helpers.Paths({})) - self.assertIsNone(ds_os.version) -- found = ds_os.get_data(timeout=0.1, retries=0) -+ found = ds_os.get_data() - self.assertFalse(found) - self.assertIsNone(ds_os.version) - -@@ -275,7 +275,7 @@ class TestOpenStackDataSource(test_helpers.HttprettyTestCase): - 'timeout': 0, - } - self.assertIsNone(ds_os.version) -- found = ds_os.get_data(timeout=0.1, retries=0) -+ found = ds_os.get_data() - self.assertFalse(found) - self.assertIsNone(ds_os.version) - -@@ -298,7 +298,7 @@ class TestOpenStackDataSource(test_helpers.HttprettyTestCase): - 'timeout': 0, - } - self.assertIsNone(ds_os.version) -- found = ds_os.get_data(timeout=0.1, retries=0) -+ found = ds_os.get_data() - self.assertFalse(found) - self.assertIsNone(ds_os.version) - diff --git a/SOURCES/0007-sysconfig-Don-t-write-BOOTPROTO-dhcp-for-ipv6-dhcp.patch b/SOURCES/0007-sysconfig-Don-t-write-BOOTPROTO-dhcp-for-ipv6-dhcp.patch new file mode 100644 index 0000000..c8736e9 --- /dev/null +++ b/SOURCES/0007-sysconfig-Don-t-write-BOOTPROTO-dhcp-for-ipv6-dhcp.patch @@ -0,0 +1,49 @@ +From 97b615b4d31efc7964ff99906c0c66f066de3f18 Mon Sep 17 00:00:00 2001 +From: Miroslav Rezanina +Date: Thu, 31 May 2018 20:00:32 +0200 +Subject: sysconfig: Don't write BOOTPROTO=dhcp for ipv6 dhcp + +Don't write BOOTPROTO=dhcp for ipv6 dhcp, as BOOTPROTO applies +only to ipv4. Explicitly write IPV6_AUTOCONF=no for dhcp on ipv6. + +X-downstream-only: yes + +Resolves: rhbz#1519271 +Signed-off-by: Ryan McCabe +--- + cloudinit/net/sysconfig.py | 2 +- + tests/unittests/test_net.py | 3 ++- + 2 files changed, 3 insertions(+), 2 deletions(-) + +diff --git a/cloudinit/net/sysconfig.py b/cloudinit/net/sysconfig.py +index cefb5c5..f870b0f 100644 +--- a/cloudinit/net/sysconfig.py ++++ b/cloudinit/net/sysconfig.py +@@ -286,7 +286,7 @@ class Renderer(renderer.Renderer): + if subnet_type == 'dhcp6': + iface_cfg['IPV6INIT'] = True + iface_cfg['DHCPV6C'] = True +- iface_cfg['BOOTPROTO'] = 'dhcp' ++ iface_cfg['IPV6_AUTOCONF'] = False + elif subnet_type in ['dhcp4', 'dhcp']: + iface_cfg['BOOTPROTO'] = 'dhcp' + elif subnet_type == 'static': +diff --git a/tests/unittests/test_net.py b/tests/unittests/test_net.py +index 95318ed..9cf41bc 100644 +--- a/tests/unittests/test_net.py ++++ b/tests/unittests/test_net.py +@@ -734,9 +734,10 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true + """miimon=100" + BONDING_SLAVE0=eth1 + BONDING_SLAVE1=eth2 +- BOOTPROTO=dhcp ++ BOOTPROTO=none + DEVICE=bond0 + DHCPV6C=yes ++ IPV6_AUTOCONF=no + IPV6INIT=yes + MACADDR=aa:bb:cc:dd:ee:ff + ONBOOT=yes +-- +1.8.3.1 + diff --git a/SOURCES/0008-DataSourceAzure.py-use-hostnamectl-to-set-hostname.patch b/SOURCES/0008-DataSourceAzure.py-use-hostnamectl-to-set-hostname.patch new file mode 100644 index 0000000..5ce0ec6 --- /dev/null +++ b/SOURCES/0008-DataSourceAzure.py-use-hostnamectl-to-set-hostname.patch @@ -0,0 +1,56 @@ +From 4ddf34bba3eb2a302ed370813e43ac804a8060a3 Mon Sep 17 00:00:00 2001 +From: Vitaly Kuznetsov +Date: Tue, 17 Apr 2018 13:07:54 +0200 +Subject: DataSourceAzure.py: use hostnamectl to set hostname + +RH-Author: Vitaly Kuznetsov +Message-id: <20180417130754.12918-3-vkuznets@redhat.com> +Patchwork-id: 79659 +O-Subject: [RHEL7.6/7.5.z cloud-init PATCH 2/2] DataSourceAzure.py: use hostnamectl to set hostname +Bugzilla: 1568717 +RH-Acked-by: Eduardo Otubo +RH-Acked-by: Mohammed Gamal +RH-Acked-by: Cathy Avery + +The right way to set hostname in RHEL7 is: + + $ hostnamectl set-hostname HOSTNAME + +DataSourceAzure, however, uses: + $ hostname HOSTSNAME + +instead and this causes problems. We can't simply change +'BUILTIN_DS_CONFIG' in DataSourceAzure.py as 'hostname' is being used +for both getting and setting the hostname. + +Long term, this should be fixed in a different way. Cloud-init +has distro-specific hostname setting/getting (see +cloudinit/distros/rhel.py) and DataSourceAzure.py needs to be switched +to use these. + +Resolves: rhbz#1434109 + +X-downstream-only: yes + +Signed-off-by: Vitaly Kuznetsov +Signed-off-by: Miroslav Rezanina +--- + cloudinit/sources/DataSourceAzure.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/cloudinit/sources/DataSourceAzure.py b/cloudinit/sources/DataSourceAzure.py +index 0ee622e..23b4d53 100644 +--- a/cloudinit/sources/DataSourceAzure.py ++++ b/cloudinit/sources/DataSourceAzure.py +@@ -228,7 +228,7 @@ def get_hostname(hostname_command='hostname'): + + + def set_hostname(hostname, hostname_command='hostname'): +- util.subp([hostname_command, hostname]) ++ util.subp(['hostnamectl', 'set-hostname', str(hostname)]) + + + @contextlib.contextmanager +-- +1.8.3.1 + diff --git a/SOURCES/0008-correct-errors-in-cloudinit-net-sysconfig.py.patch b/SOURCES/0008-correct-errors-in-cloudinit-net-sysconfig.py.patch deleted file mode 100644 index d2f12ae..0000000 --- a/SOURCES/0008-correct-errors-in-cloudinit-net-sysconfig.py.patch +++ /dev/null @@ -1,34 +0,0 @@ -From 0dab936fd1332749f905a20a44003f441eb76783 Mon Sep 17 00:00:00 2001 -From: Lars Kellogg-Stedman -Date: Thu, 16 Feb 2017 15:09:51 -0500 -Subject: [PATCH] correct errors in cloudinit/net/sysconfig.py - -There were some logic errors in sysconfig.py that appear to be the -result of accidentally typing "iface" where it should have been -"iface_cfg". This patch corrects those problems so that the module -can run successfully. - -LP: #1665441 -Resolves: rhbz#1389530 -(cherry picked from commit 07ef7f29c5ce9a97939eb32ca80fc1d8c2609216) ---- - cloudinit/net/sysconfig.py | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/cloudinit/net/sysconfig.py b/cloudinit/net/sysconfig.py -index 3c9f2d2..0b5f13c 100644 ---- a/cloudinit/net/sysconfig.py -+++ b/cloudinit/net/sysconfig.py -@@ -282,10 +282,10 @@ class Renderer(renderer.Renderer): - cls._render_subnet(iface_cfg, route_cfg, iface_subnets[0]) - elif len(iface_subnets) > 1: - for i, iface_subnet in enumerate(iface_subnets, -- start=len(iface.children)): -+ start=len(iface_cfg.children)): - iface_sub_cfg = iface_cfg.copy() - iface_sub_cfg.name = "%s:%s" % (iface_name, i) -- iface.children.append(iface_sub_cfg) -+ iface_cfg.children.append(iface_sub_cfg) - cls._render_subnet(iface_sub_cfg, route_cfg, iface_subnet) - - @classmethod diff --git a/SOURCES/0009-net-do-not-raise-exception-for-3-nameservers.patch b/SOURCES/0009-net-do-not-raise-exception-for-3-nameservers.patch deleted file mode 100644 index bcb4675..0000000 --- a/SOURCES/0009-net-do-not-raise-exception-for-3-nameservers.patch +++ /dev/null @@ -1,59 +0,0 @@ -From c4df9de80715ff76c39faea00d27acdb8a75aac7 Mon Sep 17 00:00:00 2001 -From: Lars Kellogg-Stedman -Date: Sat, 4 Mar 2017 17:07:16 -0500 -Subject: [PATCH] net: do not raise exception for > 3 nameservers - -log a warning rather than raising ValueError if we see more than three -nameserver addresses. - -LP: #1670052 -(cherry picked from commit 657fd40f9ee692a817ec4614cd0d6cb0539ffabf) ---- - cloudinit/distros/parsers/resolv_conf.py | 11 +++++++---- - tests/unittests/test_distros/test_resolv.py | 2 +- - 2 files changed, 8 insertions(+), 5 deletions(-) - -diff --git a/cloudinit/distros/parsers/resolv_conf.py b/cloudinit/distros/parsers/resolv_conf.py -index ff6ee30..d1f8a04 100644 ---- a/cloudinit/distros/parsers/resolv_conf.py -+++ b/cloudinit/distros/parsers/resolv_conf.py -@@ -6,9 +6,11 @@ - - from six import StringIO - -+from cloudinit.distros.parsers import chop_comment -+from cloudinit import log as logging - from cloudinit import util - --from cloudinit.distros.parsers import chop_comment -+LOG = logging.getLogger(__name__) - - - # See: man resolv.conf -@@ -79,9 +81,10 @@ class ResolvConf(object): - if len(new_ns) == len(current_ns): - return current_ns - if len(current_ns) >= 3: -- # Hard restriction on only 3 name servers -- raise ValueError(("Adding %r would go beyond the " -- "'3' maximum name servers") % (ns)) -+ LOG.warn("ignoring nameserver %r: adding would " -+ "exceed the maximum of " -+ "'3' name servers (see resolv.conf(5))" % (ns)) -+ return current_ns[:3] - self._remove_option('nameserver') - for n in new_ns: - self._contents.append(('option', ['nameserver', n, ''])) -diff --git a/tests/unittests/test_distros/test_resolv.py b/tests/unittests/test_distros/test_resolv.py -index 6b535a9..c9d0347 100644 ---- a/tests/unittests/test_distros/test_resolv.py -+++ b/tests/unittests/test_distros/test_resolv.py -@@ -46,7 +46,7 @@ class TestResolvHelper(TestCase): - self.assertNotIn('10.3', rp.nameservers) - self.assertEqual(len(rp.nameservers), 3) - rp.add_nameserver('10.2') -- self.assertRaises(ValueError, rp.add_nameserver, '10.3') -+ rp.add_nameserver('10.3') - self.assertNotIn('10.3', rp.nameservers) - - def test_search_domains(self): diff --git a/SOURCES/0009-sysconfig-Don-t-disable-IPV6_AUTOCONF.patch b/SOURCES/0009-sysconfig-Don-t-disable-IPV6_AUTOCONF.patch new file mode 100644 index 0000000..4e34f6a --- /dev/null +++ b/SOURCES/0009-sysconfig-Don-t-disable-IPV6_AUTOCONF.patch @@ -0,0 +1,49 @@ +From 7f22035de59580789e68975aef89c34cb1800bbf Mon Sep 17 00:00:00 2001 +From: Vitaly Kuznetsov +Date: Thu, 26 Apr 2018 09:27:49 +0200 +Subject: sysconfig: Don't disable IPV6_AUTOCONF + +RH-Author: Vitaly Kuznetsov +Message-id: <20180426092749.7251-2-vkuznets@redhat.com> +Patchwork-id: 79904 +O-Subject: [RHEL7.6/7.5.z cloud-init PATCH 1/1] sysconfig: Don't disable IPV6_AUTOCONF +Bugzilla: 1578702 +RH-Acked-by: Mohammed Gamal +RH-Acked-by: Cathy Avery +RH-Acked-by: Eduardo Otubo + +Downstream-only commit 118458a3fb ("sysconfig: Don't write BOOTPROTO=dhcp +for ipv6 dhcp") did two things: +1) Disabled BOOTPROTO='dhcp' for dhcp6 setups. This change seems to be + correct as BOOTPROTO is unrelated to IPv6. The change was since merged + upstream (commit a57928d3c314d9568712cd190cb1e721e14c108b). +2) Explicitly disabled AUTOCONF and this broke many valid configurations + using it instead of DHCPV6C. Revert this part of the change. In case + DHCPV6C-only support is needed something like a new 'dhcpv6c_only' + network type needs to be suggested upstream. + +X-downstream-only: yes + +Resolves: rhbz#1558854 + +Signed-off-by: Vitaly Kuznetsov +Signed-off-by: Miroslav Rezanina +--- + cloudinit/net/sysconfig.py | 1 - + 1 file changed, 1 deletion(-) + +diff --git a/cloudinit/net/sysconfig.py b/cloudinit/net/sysconfig.py +index f870b0f..bd81832 100644 +--- a/cloudinit/net/sysconfig.py ++++ b/cloudinit/net/sysconfig.py +@@ -286,7 +286,6 @@ class Renderer(renderer.Renderer): + if subnet_type == 'dhcp6': + iface_cfg['IPV6INIT'] = True + iface_cfg['DHCPV6C'] = True +- iface_cfg['IPV6_AUTOCONF'] = False + elif subnet_type in ['dhcp4', 'dhcp']: + iface_cfg['BOOTPROTO'] = 'dhcp' + elif subnet_type == 'static': +-- +1.8.3.1 + diff --git a/SOURCES/0010-net-support-both-ipv4-and-ipv6-gateways-in-sysconfig.patch b/SOURCES/0010-net-support-both-ipv4-and-ipv6-gateways-in-sysconfig.patch deleted file mode 100644 index 4e429f8..0000000 --- a/SOURCES/0010-net-support-both-ipv4-and-ipv6-gateways-in-sysconfig.patch +++ /dev/null @@ -1,112 +0,0 @@ -From 2d29c7af0c45186d3031c0ecd9ae0b8881a33c0b Mon Sep 17 00:00:00 2001 -From: Lars Kellogg-Stedman -Date: Thu, 2 Mar 2017 11:08:26 -0500 -Subject: [PATCH] net: support both ipv4 and ipv6 gateways in sysconfig. - -Previously, cloud-init would throw an exception if an interface had -both ipv4 and ipv6 addresses and a default gateway for each address -family. This change allows cloud-init to correctly configure -interfaces in this situation. - -LP: #1669504 -(cherry picked from commit 1d751a6f46f044e3c3827f3cef0e4a2e71d50fe7) ---- - cloudinit/net/sysconfig.py | 33 ++++++++++++++++++++++++--------- - 1 file changed, 24 insertions(+), 9 deletions(-) - -diff --git a/cloudinit/net/sysconfig.py b/cloudinit/net/sysconfig.py -index 0b5f13c..29c906f 100644 ---- a/cloudinit/net/sysconfig.py -+++ b/cloudinit/net/sysconfig.py -@@ -87,7 +87,8 @@ class Route(ConfigMap): - def __init__(self, route_name, base_sysconf_dir): - super(Route, self).__init__() - self.last_idx = 1 -- self.has_set_default = False -+ self.has_set_default_ipv4 = False -+ self.has_set_default_ipv6 = False - self._route_name = route_name - self._base_sysconf_dir = base_sysconf_dir - -@@ -95,7 +96,8 @@ class Route(ConfigMap): - r = Route(self._route_name, self._base_sysconf_dir) - r._conf = self._conf.copy() - r.last_idx = self.last_idx -- r.has_set_default = self.has_set_default -+ r.has_set_default_ipv4 = self.has_set_default_ipv4 -+ r.has_set_default_ipv6 = self.has_set_default_ipv6 - return r - - @property -@@ -119,10 +121,10 @@ class NetInterface(ConfigMap): - super(NetInterface, self).__init__() - self.children = [] - self.routes = Route(iface_name, base_sysconf_dir) -- self._kind = kind -+ self.kind = kind -+ - self._iface_name = iface_name - self._conf['DEVICE'] = iface_name -- self._conf['TYPE'] = self.iface_types[kind] - self._base_sysconf_dir = base_sysconf_dir - - @property -@@ -140,6 +142,8 @@ class NetInterface(ConfigMap): - - @kind.setter - def kind(self, kind): -+ if kind not in self.iface_types: -+ raise ValueError(kind) - self._kind = kind - self._conf['TYPE'] = self.iface_types[kind] - -@@ -172,7 +176,7 @@ class Renderer(renderer.Renderer): - ('BOOTPROTO', 'none'), - ]) - -- # If these keys exist, then there values will be used to form -+ # If these keys exist, then their values will be used to form - # a BONDING_OPTS grouping; otherwise no grouping will be set. - bond_tpl_opts = tuple([ - ('bond_mode', "mode=%s"), -@@ -198,6 +202,7 @@ class Renderer(renderer.Renderer): - def _render_iface_shared(cls, iface, iface_cfg): - for k, v in cls.iface_defaults: - iface_cfg[k] = v -+ - for (old_key, new_key) in [('mac_address', 'HWADDR'), ('mtu', 'MTU')]: - old_value = iface.get(old_key) - if old_value is not None: -@@ -226,10 +231,20 @@ class Renderer(renderer.Renderer): - if 'netmask' in subnet: - iface_cfg['NETMASK'] = subnet['netmask'] - for route in subnet.get('routes', []): -+ if subnet.get('ipv6'): -+ gw_cfg = 'IPV6_DEFAULTGW' -+ else: -+ gw_cfg = 'GATEWAY' -+ - if _is_default_route(route): -- if route_cfg.has_set_default: -- raise ValueError("Duplicate declaration of default" -- " route found for interface '%s'" -+ if ( -+ (subnet.get('ipv4') and -+ route_cfg.has_set_default_ipv4) or -+ (subnet.get('ipv6') and -+ route_cfg.has_set_default_ipv6) -+ ): -+ raise ValueError("Duplicate declaration of default " -+ "route found for interface '%s'" - % (iface_cfg.name)) - # NOTE(harlowja): ipv6 and ipv4 default gateways - gw_key = 'GATEWAY0' -@@ -241,7 +256,7 @@ class Renderer(renderer.Renderer): - # also provided the default route? - iface_cfg['DEFROUTE'] = True - if 'gateway' in route: -- iface_cfg['GATEWAY'] = route['gateway'] -+ iface_cfg[gw_cfg] = route['gateway'] - route_cfg.has_set_default = True - else: - gw_key = 'GATEWAY%s' % route_cfg.last_idx diff --git a/SOURCES/0011-systemd-replace-generator-with-unit-conditionals.patch b/SOURCES/0011-systemd-replace-generator-with-unit-conditionals.patch deleted file mode 100644 index e8cc403..0000000 --- a/SOURCES/0011-systemd-replace-generator-with-unit-conditionals.patch +++ /dev/null @@ -1,258 +0,0 @@ -From 326a466c0bdd89a161ba78b49e990c80ffacbb13 Mon Sep 17 00:00:00 2001 -From: Lars Kellogg-Stedman -Date: Mon, 1 May 2017 21:27:40 -0400 -Subject: [PATCH] systemd: replace generator with unit conditionals - -In order to avoid problems caused by changes to upstream unit files, -this patch completely separates our systemd units from those -distributed by upstream. The RHEL unit files can be found in the -rhel/systemd directory. - -This commit replaces the generator with Conditional* statements in the -unit files. You are still able to disable cloud-init by setting -cloud-init=disabled on the kernel command line or by touching -/etc/cloud/cloud-init.disable. - -We also retarget the cloud-init services from cloud-init.target back -to multi-user.target, which resolves the root cause of rhbz#1440831. - -Resolves: rhbz#1440831 -X-downstream-only: true ---- - rhel/systemd/cloud-config.service | 18 ++++++++++++ - rhel/systemd/cloud-config.target | 11 +++++++ - rhel/systemd/cloud-final.service | 19 ++++++++++++ - rhel/systemd/cloud-init-local.service | 26 +++++++++++++++++ - rhel/systemd/cloud-init.service | 25 ++++++++++++++++ - setup.py | 54 ----------------------------------- - 6 files changed, 99 insertions(+), 54 deletions(-) - create mode 100644 rhel/systemd/cloud-config.service - create mode 100644 rhel/systemd/cloud-config.target - create mode 100644 rhel/systemd/cloud-final.service - create mode 100644 rhel/systemd/cloud-init-local.service - create mode 100644 rhel/systemd/cloud-init.service - -diff --git a/rhel/systemd/cloud-config.service b/rhel/systemd/cloud-config.service -new file mode 100644 -index 0000000..12ca9df ---- /dev/null -+++ b/rhel/systemd/cloud-config.service -@@ -0,0 +1,18 @@ -+[Unit] -+Description=Apply the settings specified in cloud-config -+After=network-online.target cloud-config.target -+Wants=network-online.target cloud-config.target -+ConditionPathExists=!/etc/cloud/cloud-init.disabled -+ConditionKernelCommandLine=!cloud-init=disabled -+ -+[Service] -+Type=oneshot -+ExecStart=/usr/bin/cloud-init modules --mode=config -+RemainAfterExit=yes -+TimeoutSec=0 -+ -+# Output needs to appear in instance console output -+StandardOutput=journal+console -+ -+[Install] -+WantedBy=multi-user.target -diff --git a/rhel/systemd/cloud-config.target b/rhel/systemd/cloud-config.target -new file mode 100644 -index 0000000..ae9b7d0 ---- /dev/null -+++ b/rhel/systemd/cloud-config.target -@@ -0,0 +1,11 @@ -+# cloud-init normally emits a "cloud-config" upstart event to inform third -+# parties that cloud-config is available, which does us no good when we're -+# using systemd. cloud-config.target serves as this synchronization point -+# instead. Services that would "start on cloud-config" with upstart can -+# instead use "After=cloud-config.target" and "Wants=cloud-config.target" -+# as appropriate. -+ -+[Unit] -+Description=Cloud-config availability -+Wants=cloud-init-local.service cloud-init.service -+After=cloud-init-local.service cloud-init.service -diff --git a/rhel/systemd/cloud-final.service b/rhel/systemd/cloud-final.service -new file mode 100644 -index 0000000..32a83d8 ---- /dev/null -+++ b/rhel/systemd/cloud-final.service -@@ -0,0 +1,19 @@ -+[Unit] -+Description=Execute cloud user/final scripts -+After=network-online.target cloud-config.service rc-local.service -+Wants=network-online.target cloud-config.service -+ConditionPathExists=!/etc/cloud/cloud-init.disabled -+ConditionKernelCommandLine=!cloud-init=disabled -+ -+[Service] -+Type=oneshot -+ExecStart=/usr/bin/cloud-init modules --mode=final -+RemainAfterExit=yes -+TimeoutSec=0 -+KillMode=process -+ -+# Output needs to appear in instance console output -+StandardOutput=journal+console -+ -+[Install] -+WantedBy=multi-user.target -diff --git a/rhel/systemd/cloud-init-local.service b/rhel/systemd/cloud-init-local.service -new file mode 100644 -index 0000000..8174937 ---- /dev/null -+++ b/rhel/systemd/cloud-init-local.service -@@ -0,0 +1,26 @@ -+[Unit] -+Description=Initial cloud-init job (pre-networking) -+DefaultDependencies=no -+Wants=network-pre.target -+After=systemd-remount-fs.service -+Before=NetworkManager.service network.service -+Before=network-pre.target -+Before=shutdown.target -+Before=sysinit.target -+Conflicts=shutdown.target -+RequiresMountsFor=/var/lib/cloud -+ConditionPathExists=!/etc/cloud/cloud-init.disabled -+ConditionKernelCommandLine=!cloud-init=disabled -+ -+[Service] -+Type=oneshot -+ExecStart=/usr/bin/cloud-init init --local -+ExecStart=/bin/touch /run/cloud-init/network-config-ready -+RemainAfterExit=yes -+TimeoutSec=0 -+ -+# Output needs to appear in instance console output -+StandardOutput=journal+console -+ -+[Install] -+WantedBy=multi-user.target -diff --git a/rhel/systemd/cloud-init.service b/rhel/systemd/cloud-init.service -new file mode 100644 -index 0000000..68fc5f1 ---- /dev/null -+++ b/rhel/systemd/cloud-init.service -@@ -0,0 +1,25 @@ -+[Unit] -+Description=Initial cloud-init job (metadata service crawler) -+Wants=cloud-init-local.service -+Wants=sshd-keygen.service -+Wants=sshd.service -+After=cloud-init-local.service -+After=NetworkManager.service network.service -+Before=network-online.target -+Before=sshd-keygen.service -+Before=sshd.service -+Before=systemd-user-sessions.service -+ConditionPathExists=!/etc/cloud/cloud-init.disabled -+ConditionKernelCommandLine=!cloud-init=disabled -+ -+[Service] -+Type=oneshot -+ExecStart=/usr/bin/cloud-init init -+RemainAfterExit=yes -+TimeoutSec=0 -+ -+# Output needs to appear in instance console output -+StandardOutput=journal+console -+ -+[Install] -+WantedBy=multi-user.target -diff --git a/setup.py b/setup.py -index cc20c60..83723bf 100755 ---- a/setup.py -+++ b/setup.py -@@ -63,9 +63,6 @@ INITSYS_FILES = { - 'sysvinit_freebsd': [f for f in glob('sysvinit/freebsd/*') if is_f(f)], - 'sysvinit_deb': [f for f in glob('sysvinit/debian/*') if is_f(f)], - 'sysvinit_openrc': [f for f in glob('sysvinit/gentoo/*') if is_f(f)], -- 'systemd': [f for f in (glob('systemd/*.service') + -- glob('systemd/*.target')) if is_f(f)], -- 'systemd.generators': [f for f in glob('systemd/*-generator') if is_f(f)], - 'upstart': [f for f in glob('upstart/*') if is_f(f)], - } - INITSYS_ROOTS = { -@@ -73,9 +70,6 @@ INITSYS_ROOTS = { - 'sysvinit_freebsd': '/usr/local/etc/rc.d', - 'sysvinit_deb': '/etc/init.d', - 'sysvinit_openrc': '/etc/init.d', -- 'systemd': pkg_config_read('systemd', 'systemdsystemunitdir'), -- 'systemd.generators': pkg_config_read('systemd', -- 'systemdsystemgeneratordir'), - 'upstart': '/etc/init/', - } - INITSYS_TYPES = sorted([f.partition(".")[0] for f in INITSYS_ROOTS.keys()]) -@@ -117,50 +111,8 @@ def read_requires(): - return str(deps).splitlines() - - --# TODO: Is there a better way to do this?? --class InitsysInstallData(install): -- init_system = None -- user_options = install.user_options + [ -- # This will magically show up in member variable 'init_sys' -- ('init-system=', None, -- ('init system(s) to configure (%s) [default: None]' % -- (", ".join(INITSYS_TYPES)))), -- ] -- -- def initialize_options(self): -- install.initialize_options(self) -- self.init_system = "" -- -- def finalize_options(self): -- install.finalize_options(self) -- -- if self.init_system and isinstance(self.init_system, str): -- self.init_system = self.init_system.split(",") -- -- if len(self.init_system) == 0: -- raise DistutilsArgError( -- ("You must specify one of (%s) when" -- " specifying init system(s)!") % (", ".join(INITSYS_TYPES))) -- -- bad = [f for f in self.init_system if f not in INITSYS_TYPES] -- if len(bad) != 0: -- raise DistutilsArgError( -- "Invalid --init-system: %s" % (','.join(bad))) -- -- for system in self.init_system: -- # add data files for anything that starts with '.' -- datakeys = [k for k in INITSYS_ROOTS -- if k.partition(".")[0] == system] -- for k in datakeys: -- self.distribution.data_files.append( -- (INITSYS_ROOTS[k], INITSYS_FILES[k])) -- # Force that command to reinitalize (with new file list) -- self.distribution.reinitialize_command('install_data', True) -- -- - if in_virtualenv(): - data_files = [] -- cmdclass = {} - else: - data_files = [ - (ETC + '/cloud', glob('config/*.cfg')), -@@ -176,11 +128,6 @@ else: - [f for f in glob('doc/examples/seed/*') if is_f(f)]), - ('/usr/lib/udev/rules.d', [f for f in glob('udev/*.rules')]), - ] -- # Use a subclass for install that handles -- # adding on the right init system configuration files -- cmdclass = { -- 'install': InitsysInstallData, -- } - - - requirements = read_requires() -@@ -198,7 +145,6 @@ setuptools.setup( - scripts=['tools/cloud-init-per'], - license='Dual-licensed under GPLv3 or Apache 2.0', - data_files=data_files, -- cmdclass=cmdclass, - entry_points={ - 'console_scripts': [ - 'cloud-init = cloudinit.cmd.main:main' diff --git a/SOURCES/0012-OpenStack-add-dvs-to-the-list-of-physical-link-types.patch b/SOURCES/0012-OpenStack-add-dvs-to-the-list-of-physical-link-types.patch deleted file mode 100644 index 43719d4..0000000 --- a/SOURCES/0012-OpenStack-add-dvs-to-the-list-of-physical-link-types.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 615df299937ae99ecd571fec91dd2ad4651a6688 Mon Sep 17 00:00:00 2001 -From: Scott Moser -Date: Mon, 3 Apr 2017 10:04:43 -0400 -Subject: [PATCH] OpenStack: add 'dvs' to the list of physical link types. - -Links presented in network_data.json to the guest running on ESXi -are of type 'dvs'. - -LP: #1674946 -Resolves: rhbz#1442783 -(cherry picked from commit 61eb03fef92f435434d974fb46439189ef0b5f97) ---- - cloudinit/sources/helpers/openstack.py | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/cloudinit/sources/helpers/openstack.py b/cloudinit/sources/helpers/openstack.py -index 096062d..61cd36b 100644 ---- a/cloudinit/sources/helpers/openstack.py -+++ b/cloudinit/sources/helpers/openstack.py -@@ -52,6 +52,7 @@ OS_VERSIONS = ( - PHYSICAL_TYPES = ( - None, - 'bridge', -+ 'dvs', - 'ethernet', - 'hw_veb', - 'hyperv', diff --git a/SOURCES/0013-Bounce-network-interface-for-Azure-when-using-the-bu.patch b/SOURCES/0013-Bounce-network-interface-for-Azure-when-using-the-bu.patch deleted file mode 100644 index 7f08ba3..0000000 --- a/SOURCES/0013-Bounce-network-interface-for-Azure-when-using-the-bu.patch +++ /dev/null @@ -1,143 +0,0 @@ -From 9c2b33562da7e5ca3359a2e70b893d19c44eb66c Mon Sep 17 00:00:00 2001 -From: Brent Baude -Date: Mon, 20 Mar 2017 12:31:15 -0500 -Subject: [PATCH] Bounce network interface for Azure when using the built-in - path. - -When deploying on Azure and using only cloud-init, you must "bounce" the -network interface to trigger a DDNS update. This allows dhclient to -register the hostname with Azure so that DNS works correctly on their -private networks (i.e. between vm and vm). - -The agent path was already doing the bounce so this creates parity -between the built-in path and the agent. - -LP: #1674685 -Resolves: rhbz#1434109 -(cherry picked from commit 86715c88aab8561e1ddadac95671f6095d16f9e7) ---- - cloudinit/sources/DataSourceAzure.py | 78 +++++++++++++++++++++--------------- - cloudinit/sources/__init__.py | 2 +- - 2 files changed, 47 insertions(+), 33 deletions(-) - -diff --git a/cloudinit/sources/DataSourceAzure.py b/cloudinit/sources/DataSourceAzure.py -index c5af8b8..48a3e1d 100644 ---- a/cloudinit/sources/DataSourceAzure.py -+++ b/cloudinit/sources/DataSourceAzure.py -@@ -111,50 +111,62 @@ class DataSourceAzureNet(sources.DataSource): - root = sources.DataSource.__str__(self) - return "%s [seed=%s]" % (root, self.seed) - -- def get_metadata_from_agent(self): -- temp_hostname = self.metadata.get('local-hostname') -+ def bounce_network_with_azure_hostname(self): -+ # When using cloud-init to provision, we have to set the hostname from -+ # the metadata and "bounce" the network to force DDNS to update via -+ # dhclient -+ azure_hostname = self.metadata.get('local-hostname') -+ LOG.debug("Hostname in metadata is {}".format(azure_hostname)) - hostname_command = self.ds_cfg['hostname_bounce']['hostname_command'] -- agent_cmd = self.ds_cfg['agent_command'] -- LOG.debug("Getting metadata via agent. hostname=%s cmd=%s", -- temp_hostname, agent_cmd) -- with temporary_hostname(temp_hostname, self.ds_cfg, -+ -+ with temporary_hostname(azure_hostname, self.ds_cfg, - hostname_command=hostname_command) \ - as previous_hostname: - if (previous_hostname is not None and -- util.is_true(self.ds_cfg.get('set_hostname'))): -+ util.is_true(self.ds_cfg.get('set_hostname'))): - cfg = self.ds_cfg['hostname_bounce'] -+ -+ # "Bouncing" the network - try: -- perform_hostname_bounce(hostname=temp_hostname, -+ perform_hostname_bounce(hostname=azure_hostname, - cfg=cfg, - prev_hostname=previous_hostname) - except Exception as e: - LOG.warn("Failed publishing hostname: %s", e) - util.logexc(LOG, "handling set_hostname failed") - -- try: -- invoke_agent(agent_cmd) -- except util.ProcessExecutionError: -- # claim the datasource even if the command failed -- util.logexc(LOG, "agent command '%s' failed.", -- self.ds_cfg['agent_command']) -- -- ddir = self.ds_cfg['data_dir'] -- -- fp_files = [] -- key_value = None -- for pk in self.cfg.get('_pubkeys', []): -- if pk.get('value', None): -- key_value = pk['value'] -- LOG.debug("ssh authentication: using value from fabric") -- else: -- bname = str(pk['fingerprint'] + ".crt") -- fp_files += [os.path.join(ddir, bname)] -- LOG.debug("ssh authentication: " -- "using fingerprint from fabirc") -- -- missing = util.log_time(logfunc=LOG.debug, msg="waiting for files", -- func=wait_for_files, -- args=(fp_files,)) -+ def get_metadata_from_agent(self): -+ temp_hostname = self.metadata.get('local-hostname') -+ agent_cmd = self.ds_cfg['agent_command'] -+ LOG.debug("Getting metadata via agent. hostname=%s cmd=%s", -+ temp_hostname, agent_cmd) -+ -+ self.bounce_network_with_azure_hostname() -+ -+ try: -+ invoke_agent(agent_cmd) -+ except util.ProcessExecutionError: -+ # claim the datasource even if the command failed -+ util.logexc(LOG, "agent command '%s' failed.", -+ self.ds_cfg['agent_command']) -+ -+ ddir = self.ds_cfg['data_dir'] -+ -+ fp_files = [] -+ key_value = None -+ for pk in self.cfg.get('_pubkeys', []): -+ if pk.get('value', None): -+ key_value = pk['value'] -+ LOG.debug("ssh authentication: using value from fabric") -+ else: -+ bname = str(pk['fingerprint'] + ".crt") -+ fp_files += [os.path.join(ddir, bname)] -+ LOG.debug("ssh authentication: " -+ "using fingerprint from fabirc") -+ -+ missing = util.log_time(logfunc=LOG.debug, msg="waiting for files", -+ func=wait_for_files, -+ args=(fp_files,)) - if len(missing): - LOG.warn("Did not find files, but going on: %s", missing) - -@@ -220,6 +232,8 @@ class DataSourceAzureNet(sources.DataSource): - write_files(ddir, files, dirmode=0o700) - - if self.ds_cfg['agent_command'] == AGENT_START_BUILTIN: -+ self.bounce_network_with_azure_hostname() -+ - metadata_func = partial(get_metadata_from_fabric, - fallback_lease_file=self. - dhclient_lease_file) -diff --git a/cloudinit/sources/__init__.py b/cloudinit/sources/__init__.py -index 3d01072..1829450 100644 ---- a/cloudinit/sources/__init__.py -+++ b/cloudinit/sources/__init__.py -@@ -210,7 +210,7 @@ class DataSource(object): - else: - hostname = toks[0] - -- if fqdn: -+ if fqdn and domain != defdomain: - return "%s.%s" % (hostname, domain) - else: - return hostname diff --git a/SOURCES/0014-limit-permissions-on-def_log_file.patch b/SOURCES/0014-limit-permissions-on-def_log_file.patch deleted file mode 100644 index defda9d..0000000 --- a/SOURCES/0014-limit-permissions-on-def_log_file.patch +++ /dev/null @@ -1,63 +0,0 @@ -From 9855ef36cfbb148918cb223a997445d59f1dd4f7 Mon Sep 17 00:00:00 2001 -From: Lars Kellogg-Stedman -Date: Fri, 7 Apr 2017 18:50:54 -0400 -Subject: [PATCH] limit permissions on def_log_file - -This sets a default mode of 0600 on def_log_file, and makes this -configurable via the def_log_file_mode option in cloud.cfg. - -LP: #1541196 -Resolves: rhbz#1424612 -X-approved-upstream: true ---- - cloudinit/settings.py | 1 + - cloudinit/stages.py | 3 ++- - doc/examples/cloud-config.txt | 4 ++++ - 3 files changed, 7 insertions(+), 1 deletion(-) - -diff --git a/cloudinit/settings.py b/cloudinit/settings.py -index 6d31bb6..0d39aab 100644 ---- a/cloudinit/settings.py -+++ b/cloudinit/settings.py -@@ -36,6 +36,7 @@ CFG_BUILTIN = { - 'None', - ], - 'def_log_file': '/var/log/cloud-init.log', -+ 'def_log_file_mode': 0o600, - 'log_cfgs': [], - 'mount_default_fields': [None, None, 'auto', 'defaults,nofail', '0', '2'], - 'ssh_deletekeys': False, -diff --git a/cloudinit/stages.py b/cloudinit/stages.py -index b0552dd..bb20a6f 100644 ---- a/cloudinit/stages.py -+++ b/cloudinit/stages.py -@@ -145,8 +145,9 @@ class Init(object): - def _initialize_filesystem(self): - util.ensure_dirs(self._initial_subdirs()) - log_file = util.get_cfg_option_str(self.cfg, 'def_log_file') -+ log_file_mode = util.get_cfg_option_int(self.cfg, 'def_log_file_mode') - if log_file: -- util.ensure_file(log_file) -+ util.ensure_file(log_file, mode=log_file_mode) - perms = self.cfg.get('syslog_fix_perms') - if not perms: - perms = {} -diff --git a/doc/examples/cloud-config.txt b/doc/examples/cloud-config.txt -index c5f84b1..8fcce73 100644 ---- a/doc/examples/cloud-config.txt -+++ b/doc/examples/cloud-config.txt -@@ -397,10 +397,14 @@ timezone: US/Eastern - # if syslog_fix_perms is a list, it will iterate through and use the - # first pair that does not raise error. - # -+# 'def_log_file' will be created with mode 'def_log_file_mode', which -+# is specified as a numeric value and defaults to 0600. -+# - # the default values are '/var/log/cloud-init.log' and 'syslog:adm' - # the value of 'def_log_file' should match what is configured in logging - # if either is empty, then no change of ownership will be done - def_log_file: /var/log/my-logging-file.log -+def_log_file_mode: 0600 - syslog_fix_perms: syslog:root - - # you can set passwords for a user or multiple users diff --git a/SOURCES/0015-remove-tee-command-from-logging-configuration.patch b/SOURCES/0015-remove-tee-command-from-logging-configuration.patch deleted file mode 100644 index 2618978..0000000 --- a/SOURCES/0015-remove-tee-command-from-logging-configuration.patch +++ /dev/null @@ -1,29 +0,0 @@ -From daa38854c690f4523d0665785180a5a62431eba7 Mon Sep 17 00:00:00 2001 -From: Lars Kellogg-Stedman -Date: Fri, 7 Apr 2017 19:09:13 -0400 -Subject: [PATCH] remove 'tee' command from logging configuration - -the default logging configuration passes all cloud-init output through -'tee' in order to generate /var/log/cloud-init-output.log. This is -redundant on modern systems, since stdout/stderr are captured by -systemd and available via journalctl. - -Resolves: rhbz#1424612 -X-downstream-only: true ---- - config/cloud.cfg.d/05_logging.cfg | 5 ----- - 1 file changed, 5 deletions(-) - -diff --git a/config/cloud.cfg.d/05_logging.cfg b/config/cloud.cfg.d/05_logging.cfg -index 937b07f..4be8866 100644 ---- a/config/cloud.cfg.d/05_logging.cfg -+++ b/config/cloud.cfg.d/05_logging.cfg -@@ -64,8 +64,3 @@ log_cfgs: - - [ *log_base, *log_file ] - # A file path can also be used. - # - /etc/log.conf -- --# This tells cloud-init to redirect its stdout and stderr to --# 'tee -a /var/log/cloud-init-output.log' so the user can see output --# there without needing to look on the console. --output: {all: '| tee -a /var/log/cloud-init-output.log'} diff --git a/SOURCES/0016-add-power-state-change-module-to-cloud_final_modules.patch b/SOURCES/0016-add-power-state-change-module-to-cloud_final_modules.patch deleted file mode 100644 index 6bd0f00..0000000 --- a/SOURCES/0016-add-power-state-change-module-to-cloud_final_modules.patch +++ /dev/null @@ -1,23 +0,0 @@ -From b48c5aede6fb5187b994a06462c79ff331888c81 Mon Sep 17 00:00:00 2001 -From: Lars Kellogg-Stedman -Date: Fri, 7 Apr 2017 00:40:22 -0400 -Subject: [PATCH] add power-state-change module to cloud_final_modules - -Resolves: rhbz#1252477 -X-downstream-only: true ---- - rhel/cloud.cfg | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/rhel/cloud.cfg b/rhel/cloud.cfg -index 986f241..8644872 100644 ---- a/rhel/cloud.cfg -+++ b/rhel/cloud.cfg -@@ -48,6 +48,7 @@ cloud_final_modules: - - keys-to-console - - phone-home - - final-message -+ - power-state-change - - system_info: - default_user: diff --git a/SOURCES/0017-sysconfig-Raise-ValueError-when-multiple-default-gat.patch b/SOURCES/0017-sysconfig-Raise-ValueError-when-multiple-default-gat.patch deleted file mode 100644 index 4cf526d..0000000 --- a/SOURCES/0017-sysconfig-Raise-ValueError-when-multiple-default-gat.patch +++ /dev/null @@ -1,143 +0,0 @@ -From a298fd775b537839214802f161634215d2f827a8 Mon Sep 17 00:00:00 2001 -From: Chad Smith -Date: Tue, 9 May 2017 20:23:05 -0600 -Subject: [PATCH] sysconfig: Raise ValueError when multiple default gateways - are present. - -Fixed setting Route.has_set_default_ipv6 or *_ipv4 to track whether a -route already has a default gateway defined. The code was setting -Route.has_set_default which wasn't checked when raising "duplicate -gateway" ValueErrors. Added unit tests to exercise this expected raised -ValueError. Also moved is_ipv6 = subnet.get('ipv6') logic out of a for -loop because we don't need to recalculate the same value every route -iteration. - -LP: #1687485 -(cherry picked from commit dd03bb411c9a6f10854a3bbc3223b204c3d4d174) - -Resolves: rhbz#1438082 ---- - cloudinit/net/sysconfig.py | 14 ++++----- - tests/unittests/test_net.py | 76 +++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 83 insertions(+), 7 deletions(-) - -diff --git a/cloudinit/net/sysconfig.py b/cloudinit/net/sysconfig.py -index 29c906f..d521d5c 100644 ---- a/cloudinit/net/sysconfig.py -+++ b/cloudinit/net/sysconfig.py -@@ -230,12 +230,8 @@ class Renderer(renderer.Renderer): - iface_cfg.name)) - if 'netmask' in subnet: - iface_cfg['NETMASK'] = subnet['netmask'] -+ is_ipv6 = subnet.get('ipv6') - for route in subnet.get('routes', []): -- if subnet.get('ipv6'): -- gw_cfg = 'IPV6_DEFAULTGW' -- else: -- gw_cfg = 'GATEWAY' -- - if _is_default_route(route): - if ( - (subnet.get('ipv4') and -@@ -256,8 +252,12 @@ class Renderer(renderer.Renderer): - # also provided the default route? - iface_cfg['DEFROUTE'] = True - if 'gateway' in route: -- iface_cfg[gw_cfg] = route['gateway'] -- route_cfg.has_set_default = True -+ if is_ipv6: -+ iface_cfg['IPV6_DEFAULTGW'] = route['gateway'] -+ route_cfg.has_set_default_ipv6 = True -+ else: -+ iface_cfg['GATEWAY'] = route['gateway'] -+ route_cfg.has_set_default_ipv4 = True - else: - gw_key = 'GATEWAY%s' % route_cfg.last_idx - nm_key = 'NETMASK%s' % route_cfg.last_idx -diff --git a/tests/unittests/test_net.py b/tests/unittests/test_net.py -index ce13664..262c6d5 100755 ---- a/tests/unittests/test_net.py -+++ b/tests/unittests/test_net.py -@@ -515,6 +515,82 @@ USERCTL=no - """.lstrip() - self.assertEqual(expected_content, content) - -+ def test_multiple_ipv4_default_gateways(self): -+ """ValueError is raised when duplicate ipv4 gateways exist.""" -+ net_json = { -+ "services": [{"type": "dns", "address": "172.19.0.12"}], -+ "networks": [{ -+ "network_id": "dacd568d-5be6-4786-91fe-750c374b78b4", -+ "type": "ipv4", "netmask": "255.255.252.0", -+ "link": "tap1a81968a-79", -+ "routes": [{ -+ "netmask": "0.0.0.0", -+ "network": "0.0.0.0", -+ "gateway": "172.19.3.254", -+ }, { -+ "netmask": "0.0.0.0", # A second default gateway -+ "network": "0.0.0.0", -+ "gateway": "172.20.3.254", -+ }], -+ "ip_address": "172.19.1.34", "id": "network0" -+ }], -+ "links": [ -+ { -+ "ethernet_mac_address": "fa:16:3e:ed:9a:59", -+ "mtu": None, "type": "bridge", "id": -+ "tap1a81968a-79", -+ "vif_id": "1a81968a-797a-400f-8a80-567f997eb93f" -+ }, -+ ], -+ } -+ macs = {'fa:16:3e:ed:9a:59': 'eth0'} -+ render_dir = self.tmp_dir() -+ network_cfg = openstack.convert_net_json(net_json, known_macs=macs) -+ ns = network_state.parse_net_config_data(network_cfg, -+ skip_broken=False) -+ renderer = sysconfig.Renderer() -+ with self.assertRaises(ValueError): -+ renderer.render_network_state(ns, render_dir) -+ self.assertEqual([], os.listdir(render_dir)) -+ -+ def test_multiple_ipv6_default_gateways(self): -+ """ValueError is raised when duplicate ipv6 gateways exist.""" -+ net_json = { -+ "services": [{"type": "dns", "address": "172.19.0.12"}], -+ "networks": [{ -+ "network_id": "public-ipv6", -+ "type": "ipv6", "netmask": "", -+ "link": "tap1a81968a-79", -+ "routes": [{ -+ "gateway": "2001:DB8::1", -+ "netmask": "::", -+ "network": "::" -+ }, { -+ "gateway": "2001:DB9::1", -+ "netmask": "::", -+ "network": "::" -+ }], -+ "ip_address": "2001:DB8::10", "id": "network1" -+ }], -+ "links": [ -+ { -+ "ethernet_mac_address": "fa:16:3e:ed:9a:59", -+ "mtu": None, "type": "bridge", "id": -+ "tap1a81968a-79", -+ "vif_id": "1a81968a-797a-400f-8a80-567f997eb93f" -+ }, -+ ], -+ } -+ macs = {'fa:16:3e:ed:9a:59': 'eth0'} -+ render_dir = self.tmp_dir() -+ network_cfg = openstack.convert_net_json(net_json, known_macs=macs) -+ ns = network_state.parse_net_config_data(network_cfg, -+ skip_broken=False) -+ renderer = sysconfig.Renderer() -+ with self.assertRaises(ValueError): -+ renderer.render_network_state(ns, render_dir) -+ self.assertEqual([], os.listdir(render_dir)) -+ - def test_openstack_rendering_samples(self): - tmp_dir = tempfile.mkdtemp() - self.addCleanup(shutil.rmtree, tmp_dir) diff --git a/SOURCES/0018-Fix-dual-stack-IPv4-IPv6-configuration-for-RHEL.patch b/SOURCES/0018-Fix-dual-stack-IPv4-IPv6-configuration-for-RHEL.patch deleted file mode 100644 index 56830d4..0000000 --- a/SOURCES/0018-Fix-dual-stack-IPv4-IPv6-configuration-for-RHEL.patch +++ /dev/null @@ -1,642 +0,0 @@ -From 8741bba1983532e6aefa78f350fdae91b8b151a1 Mon Sep 17 00:00:00 2001 -From: Andreas Karis -Date: Fri, 21 Apr 2017 20:35:39 -0400 -Subject: [PATCH] Fix dual stack IPv4/IPv6 configuration for RHEL - -Dual stack IPv4/IPv6 configuration via config drive is broken for RHEL7. -This patch fixes several scenarios for IPv4/IPv6/dual stack with multiple IP assignment -Removes unpopular IPv4 alias files and invalid IPv6 alias files - -Also fixes associated unit tests - -LP: #1679817 -LP: #1685534 -LP: #1685532 - -Resolves: rhbz#1438082 -X-approved-upstream: true ---- - cloudinit/net/sysconfig.py | 244 ++++++++++++++++++------- - tests/unittests/test_distros/test_netconfig.py | 139 +++++++++++++- - tests/unittests/test_net.py | 144 ++++++++++++++- - 3 files changed, 455 insertions(+), 72 deletions(-) - -diff --git a/cloudinit/net/sysconfig.py b/cloudinit/net/sysconfig.py -index d521d5c..240ed23 100644 ---- a/cloudinit/net/sysconfig.py -+++ b/cloudinit/net/sysconfig.py -@@ -58,6 +58,9 @@ class ConfigMap(object): - def __setitem__(self, key, value): - self._conf[key] = value - -+ def __getitem__(self, key): -+ return self._conf[key] -+ - def drop(self, key): - self._conf.pop(key, None) - -@@ -82,7 +85,8 @@ class ConfigMap(object): - class Route(ConfigMap): - """Represents a route configuration.""" - -- route_fn_tpl = '%(base)s/network-scripts/route-%(name)s' -+ route_fn_tpl_ipv4 = '%(base)s/network-scripts/route-%(name)s' -+ route_fn_tpl_ipv6 = '%(base)s/network-scripts/route6-%(name)s' - - def __init__(self, route_name, base_sysconf_dir): - super(Route, self).__init__() -@@ -101,9 +105,58 @@ class Route(ConfigMap): - return r - - @property -- def path(self): -- return self.route_fn_tpl % ({'base': self._base_sysconf_dir, -- 'name': self._route_name}) -+ def path_ipv4(self): -+ return self.route_fn_tpl_ipv4 % ({'base': self._base_sysconf_dir, -+ 'name': self._route_name}) -+ -+ @property -+ def path_ipv6(self): -+ return self.route_fn_tpl_ipv6 % ({'base': self._base_sysconf_dir, -+ 'name': self._route_name}) -+ -+ def is_ipv6_route(self, address): -+ return ':' in address -+ -+ def to_string(self, proto="ipv4"): -+ # only accept ipv4 and ipv6 -+ if proto not in ['ipv4', 'ipv6']: -+ raise ValueError("Unknown protocol '%s'" % (str(proto))) -+ buf = six.StringIO() -+ buf.write(_make_header()) -+ if self._conf: -+ buf.write("\n") -+ # need to reindex IPv4 addresses -+ # (because Route can contain a mix of IPv4 and IPv6) -+ reindex = -1 -+ for key in sorted(self._conf.keys()): -+ if 'ADDRESS' in key: -+ index = key.replace('ADDRESS', '') -+ address_value = str(self._conf[key]) -+ # only accept combinations: -+ # if proto ipv6 only display ipv6 routes -+ # if proto ipv4 only display ipv4 routes -+ # do not add ipv6 routes if proto is ipv4 -+ # do not add ipv4 routes if proto is ipv6 -+ # (this array will contain a mix of ipv4 and ipv6) -+ if proto == "ipv4" and not self.is_ipv6_route(address_value): -+ netmask_value = str(self._conf['NETMASK' + index]) -+ gateway_value = str(self._conf['GATEWAY' + index]) -+ # increase IPv4 index -+ reindex = reindex + 1 -+ buf.write("%s=%s\n" % ('ADDRESS' + str(reindex), -+ _quote_value(address_value))) -+ buf.write("%s=%s\n" % ('GATEWAY' + str(reindex), -+ _quote_value(gateway_value))) -+ buf.write("%s=%s\n" % ('NETMASK' + str(reindex), -+ _quote_value(netmask_value))) -+ elif proto == "ipv6" and self.is_ipv6_route(address_value): -+ netmask_value = str(self._conf['NETMASK' + index]) -+ gateway_value = str(self._conf['GATEWAY' + index]) -+ buf.write("%s/%s via %s\n" % (address_value, -+ netmask_value, -+ gateway_value)) -+ -+ return buf.getvalue() - - - class NetInterface(ConfigMap): -@@ -209,65 +262,119 @@ class Renderer(renderer.Renderer): - iface_cfg[new_key] = old_value - - @classmethod -- def _render_subnet(cls, iface_cfg, route_cfg, subnet): -- subnet_type = subnet.get('type') -- if subnet_type == 'dhcp6': -- iface_cfg['DHCPV6C'] = True -- iface_cfg['IPV6INIT'] = True -- iface_cfg['BOOTPROTO'] = 'dhcp' -- elif subnet_type in ['dhcp4', 'dhcp']: -- iface_cfg['BOOTPROTO'] = 'dhcp' -- elif subnet_type == 'static': -- iface_cfg['BOOTPROTO'] = 'static' -- if subnet.get('ipv6'): -- iface_cfg['IPV6ADDR'] = subnet['address'] -+ def _render_subnets(cls, iface_cfg, subnets): -+ # setting base values -+ iface_cfg['BOOTPROTO'] = 'none' -+ -+ # modifying base values according to subnets -+ for i, subnet in enumerate(subnets, start=len(iface_cfg.children)): -+ subnet_type = subnet.get('type') -+ if subnet_type == 'dhcp6': - iface_cfg['IPV6INIT'] = True -+ iface_cfg['DHCPV6C'] = True -+ iface_cfg['BOOTPROTO'] = 'dhcp' -+ elif subnet_type in ['dhcp4', 'dhcp']: -+ iface_cfg['BOOTPROTO'] = 'dhcp' -+ elif subnet_type == 'static': -+ # grep BOOTPROTO sysconfig.txt -A2 | head -3 -+ # BOOTPROTO=none|bootp|dhcp -+ # 'bootp' or 'dhcp' cause a DHCP client -+ # to run on the device. Any other -+ # value causes any static configuration -+ # in the file to be applied. -+ # ==> the following should not be set to 'static' -+ # but should remain 'none' -+ # if iface_cfg['BOOTPROTO'] == 'none': -+ # iface_cfg['BOOTPROTO'] = 'static' -+ if subnet.get('ipv6'): -+ iface_cfg['IPV6INIT'] = True - else: -- iface_cfg['IPADDR'] = subnet['address'] -- else: -- raise ValueError("Unknown subnet type '%s' found" -- " for interface '%s'" % (subnet_type, -- iface_cfg.name)) -- if 'netmask' in subnet: -- iface_cfg['NETMASK'] = subnet['netmask'] -- is_ipv6 = subnet.get('ipv6') -- for route in subnet.get('routes', []): -- if _is_default_route(route): -- if ( -- (subnet.get('ipv4') and -- route_cfg.has_set_default_ipv4) or -- (subnet.get('ipv6') and -- route_cfg.has_set_default_ipv6) -- ): -- raise ValueError("Duplicate declaration of default " -- "route found for interface '%s'" -- % (iface_cfg.name)) -- # NOTE(harlowja): ipv6 and ipv4 default gateways -- gw_key = 'GATEWAY0' -- nm_key = 'NETMASK0' -- addr_key = 'ADDRESS0' -- # The owning interface provides the default route. -- # -- # TODO(harlowja): add validation that no other iface has -- # also provided the default route? -- iface_cfg['DEFROUTE'] = True -- if 'gateway' in route: -- if is_ipv6: -- iface_cfg['IPV6_DEFAULTGW'] = route['gateway'] -- route_cfg.has_set_default_ipv6 = True -+ raise ValueError("Unknown subnet type '%s' found" -+ " for interface '%s'" % (subnet_type, -+ iface_cfg.name)) -+ -+ # set IPv4 and IPv6 static addresses -+ ipv4_index = -1 -+ ipv6_index = -1 -+ for i, subnet in enumerate(subnets, start=len(iface_cfg.children)): -+ subnet_type = subnet.get('type') -+ if subnet_type == 'dhcp6': -+ continue -+ elif subnet_type in ['dhcp4', 'dhcp']: -+ continue -+ elif subnet_type == 'static': -+ if subnet.get('ipv6'): -+ ipv6_index = ipv6_index + 1 -+ if 'netmask' in subnet and str(subnet['netmask']) != "": -+ ipv6_cidr = (subnet['address'] + -+ '/' + -+ str(subnet['netmask'])) - else: -- iface_cfg['GATEWAY'] = route['gateway'] -- route_cfg.has_set_default_ipv4 = True -- else: -- gw_key = 'GATEWAY%s' % route_cfg.last_idx -- nm_key = 'NETMASK%s' % route_cfg.last_idx -- addr_key = 'ADDRESS%s' % route_cfg.last_idx -- route_cfg.last_idx += 1 -- for (old_key, new_key) in [('gateway', gw_key), -- ('netmask', nm_key), -- ('network', addr_key)]: -- if old_key in route: -- route_cfg[new_key] = route[old_key] -+ ipv6_cidr = subnet['address'] -+ if ipv6_index == 0: -+ iface_cfg['IPV6ADDR'] = ipv6_cidr -+ elif ipv6_index == 1: -+ iface_cfg['IPV6ADDR_SECONDARIES'] = ipv6_cidr -+ else: -+ iface_cfg['IPV6ADDR_SECONDARIES'] = ( -+ iface_cfg['IPV6ADDR_SECONDARIES'] + -+ " " + ipv6_cidr) -+ else: -+ ipv4_index = ipv4_index + 1 -+ if ipv4_index == 0: -+ iface_cfg['IPADDR'] = subnet['address'] -+ if 'netmask' in subnet: -+ iface_cfg['NETMASK'] = subnet['netmask'] -+ else: -+ iface_cfg['IPADDR' + str(ipv4_index)] = \ -+ subnet['address'] -+ if 'netmask' in subnet: -+ iface_cfg['NETMASK' + str(ipv4_index)] = \ -+ subnet['netmask'] -+ -+ @classmethod -+ def _render_subnet_routes(cls, iface_cfg, route_cfg, subnets): -+ for i, subnet in enumerate(subnets, start=len(iface_cfg.children)): -+ for route in subnet.get('routes', []): -+ is_ipv6 = subnet.get('ipv6') -+ -+ if _is_default_route(route): -+ if ( -+ (subnet.get('ipv4') and -+ route_cfg.has_set_default_ipv4) or -+ (subnet.get('ipv6') and -+ route_cfg.has_set_default_ipv6) -+ ): -+ raise ValueError("Duplicate declaration of default " -+ "route found for interface '%s'" -+ % (iface_cfg.name)) -+ # NOTE(harlowja): ipv6 and ipv4 default gateways -+ gw_key = 'GATEWAY0' -+ nm_key = 'NETMASK0' -+ addr_key = 'ADDRESS0' -+ # The owning interface provides the default route. -+ # -+ # TODO(harlowja): add validation that no other iface has -+ # also provided the default route? -+ iface_cfg['DEFROUTE'] = True -+ if 'gateway' in route: -+ if is_ipv6: -+ iface_cfg['IPV6_DEFAULTGW'] = route['gateway'] -+ route_cfg.has_set_default_ipv6 = True -+ else: -+ iface_cfg['GATEWAY'] = route['gateway'] -+ route_cfg.has_set_default_ipv4 = True -+ -+ else: -+ gw_key = 'GATEWAY%s' % route_cfg.last_idx -+ nm_key = 'NETMASK%s' % route_cfg.last_idx -+ addr_key = 'ADDRESS%s' % route_cfg.last_idx -+ route_cfg.last_idx += 1 -+ for (old_key, new_key) in [('gateway', gw_key), -+ ('netmask', nm_key), -+ ('network', addr_key)]: -+ if old_key in route: -+ route_cfg[new_key] = route[old_key] - - @classmethod - def _render_bonding_opts(cls, iface_cfg, iface): -@@ -293,15 +400,9 @@ class Renderer(renderer.Renderer): - iface_subnets = iface.get("subnets", []) - iface_cfg = iface_contents[iface_name] - route_cfg = iface_cfg.routes -- if len(iface_subnets) == 1: -- cls._render_subnet(iface_cfg, route_cfg, iface_subnets[0]) -- elif len(iface_subnets) > 1: -- for i, iface_subnet in enumerate(iface_subnets, -- start=len(iface_cfg.children)): -- iface_sub_cfg = iface_cfg.copy() -- iface_sub_cfg.name = "%s:%s" % (iface_name, i) -- iface_cfg.children.append(iface_sub_cfg) -- cls._render_subnet(iface_sub_cfg, route_cfg, iface_subnet) -+ -+ cls._render_subnets(iface_cfg, iface_subnets) -+ cls._render_subnet_routes(iface_cfg, route_cfg, iface_subnets) - - @classmethod - def _render_bond_interfaces(cls, network_state, iface_contents): -@@ -383,7 +484,10 @@ class Renderer(renderer.Renderer): - if iface_cfg: - contents[iface_cfg.path] = iface_cfg.to_string() - if iface_cfg.routes: -- contents[iface_cfg.routes.path] = iface_cfg.routes.to_string() -+ contents[iface_cfg.routes.path_ipv4] = \ -+ iface_cfg.routes.to_string("ipv4") -+ contents[iface_cfg.routes.path_ipv6] = \ -+ iface_cfg.routes.to_string("ipv6") - return contents - - def render_network_state(self, target, network_state): -diff --git a/tests/unittests/test_distros/test_netconfig.py b/tests/unittests/test_distros/test_netconfig.py -index bde3bb5..85982cf 100644 ---- a/tests/unittests/test_distros/test_netconfig.py -+++ b/tests/unittests/test_distros/test_netconfig.py -@@ -195,6 +195,76 @@ NETWORKING=yes - self.assertCfgEquals(expected_buf, str(write_buf)) - self.assertEqual(write_buf.mode, 0o644) - -+ def test_apply_network_config_rh(self): -+ rh_distro = self._get_distro('rhel') -+ -+ write_bufs = {} -+ -+ def replace_write(filename, content, mode=0o644, omode="wb"): -+ buf = WriteBuffer() -+ buf.mode = mode -+ buf.omode = omode -+ buf.write(content) -+ write_bufs[filename] = buf -+ -+ with ExitStack() as mocks: -+ # sysconfig availability checks -+ mocks.enter_context( -+ mock.patch.object(util, 'which', return_value=True)) -+ mocks.enter_context( -+ mock.patch.object(util, 'write_file', replace_write)) -+ mocks.enter_context( -+ mock.patch.object(util, 'load_file', return_value='')) -+ mocks.enter_context( -+ mock.patch.object(os.path, 'isfile', return_value=True)) -+ -+ rh_distro.apply_network_config(V1_NET_CFG, False) -+ -+ self.assertEqual(len(write_bufs), 5) -+ -+ # eth0 -+ self.assertIn('/etc/sysconfig/network-scripts/ifcfg-eth0', -+ write_bufs) -+ write_buf = write_bufs['/etc/sysconfig/network-scripts/ifcfg-eth0'] -+ expected_buf = ''' -+# Created by cloud-init on instance boot automatically, do not edit. -+# -+BOOTPROTO=none -+DEVICE=eth0 -+IPADDR=192.168.1.5 -+NETMASK=255.255.255.0 -+ONBOOT=yes -+TYPE=Ethernet -+USERCTL=no -+''' -+ self.assertCfgEquals(expected_buf, str(write_buf)) -+ self.assertEqual(write_buf.mode, 0o644) -+ -+ # eth1 -+ self.assertIn('/etc/sysconfig/network-scripts/ifcfg-eth1', -+ write_bufs) -+ write_buf = write_bufs['/etc/sysconfig/network-scripts/ifcfg-eth1'] -+ expected_buf = ''' -+# Created by cloud-init on instance boot automatically, do not edit. -+# -+BOOTPROTO=dhcp -+DEVICE=eth1 -+ONBOOT=yes -+TYPE=Ethernet -+USERCTL=no -+''' -+ self.assertCfgEquals(expected_buf, str(write_buf)) -+ self.assertEqual(write_buf.mode, 0o644) -+ -+ self.assertIn('/etc/sysconfig/network', write_bufs) -+ write_buf = write_bufs['/etc/sysconfig/network'] -+ expected_buf = ''' -+# Created by cloud-init v. 0.7 -+NETWORKING=yes -+''' -+ self.assertCfgEquals(expected_buf, str(write_buf)) -+ self.assertEqual(write_buf.mode, 0o644) -+ - def test_write_ipv6_rhel(self): - rh_distro = self._get_distro('rhel') - -@@ -214,7 +284,6 @@ NETWORKING=yes - mock.patch.object(util, 'load_file', return_value='')) - mocks.enter_context( - mock.patch.object(os.path, 'isfile', return_value=False)) -- - rh_distro.apply_network(BASE_NET_CFG_IPV6, False) - - self.assertEqual(len(write_bufs), 4) -@@ -274,6 +343,74 @@ IPV6_AUTOCONF=no - self.assertCfgEquals(expected_buf, str(write_buf)) - self.assertEqual(write_buf.mode, 0o644) - -+ def test_apply_network_config_ipv6_rh(self): -+ rh_distro = self._get_distro('rhel') -+ -+ write_bufs = {} -+ -+ def replace_write(filename, content, mode=0o644, omode="wb"): -+ buf = WriteBuffer() -+ buf.mode = mode -+ buf.omode = omode -+ buf.write(content) -+ write_bufs[filename] = buf -+ -+ with ExitStack() as mocks: -+ mocks.enter_context( -+ mock.patch.object(util, 'which', return_value=True)) -+ mocks.enter_context( -+ mock.patch.object(util, 'write_file', replace_write)) -+ mocks.enter_context( -+ mock.patch.object(util, 'load_file', return_value='')) -+ mocks.enter_context( -+ mock.patch.object(os.path, 'isfile', return_value=True)) -+ -+ rh_distro.apply_network_config(V1_NET_CFG_IPV6, False) -+ -+ self.assertEqual(len(write_bufs), 5) -+ -+ self.assertIn('/etc/sysconfig/network-scripts/ifcfg-eth0', -+ write_bufs) -+ write_buf = write_bufs['/etc/sysconfig/network-scripts/ifcfg-eth0'] -+ expected_buf = ''' -+# Created by cloud-init on instance boot automatically, do not edit. -+# -+BOOTPROTO=none -+DEVICE=eth0 -+IPV6ADDR=2607:f0d0:1002:0011::2/64 -+IPV6INIT=yes -+ONBOOT=yes -+TYPE=Ethernet -+USERCTL=no -+''' -+ self.assertCfgEquals(expected_buf, str(write_buf)) -+ self.assertEqual(write_buf.mode, 0o644) -+ self.assertIn('/etc/sysconfig/network-scripts/ifcfg-eth1', -+ write_bufs) -+ write_buf = write_bufs['/etc/sysconfig/network-scripts/ifcfg-eth1'] -+ expected_buf = ''' -+# Created by cloud-init on instance boot automatically, do not edit. -+# -+BOOTPROTO=dhcp -+DEVICE=eth1 -+ONBOOT=yes -+TYPE=Ethernet -+USERCTL=no -+''' -+ self.assertCfgEquals(expected_buf, str(write_buf)) -+ self.assertEqual(write_buf.mode, 0o644) -+ -+ self.assertIn('/etc/sysconfig/network', write_bufs) -+ write_buf = write_bufs['/etc/sysconfig/network'] -+ expected_buf = ''' -+# Created by cloud-init v. 0.7 -+NETWORKING=yes -+NETWORKING_IPV6=yes -+IPV6_AUTOCONF=no -+''' -+ self.assertCfgEquals(expected_buf, str(write_buf)) -+ self.assertEqual(write_buf.mode, 0o644) -+ - def test_simple_write_freebsd(self): - fbsd_distro = self._get_distro('freebsd') - -diff --git a/tests/unittests/test_net.py b/tests/unittests/test_net.py -index 262c6d5..172d604 100755 ---- a/tests/unittests/test_net.py -+++ b/tests/unittests/test_net.py -@@ -137,7 +137,7 @@ OS_SAMPLES = [ - """ - # Created by cloud-init on instance boot automatically, do not edit. - # --BOOTPROTO=static -+BOOTPROTO=none - DEFROUTE=yes - DEVICE=eth0 - GATEWAY=172.19.3.254 -@@ -165,6 +165,148 @@ nameserver 172.19.0.12 - ('etc/udev/rules.d/70-persistent-net.rules', - "".join(['SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ', - 'ATTR{address}=="fa:16:3e:ed:9a:59", NAME="eth0"\n']))] -+ }, -+ { -+ 'in_data': { -+ "services": [{"type": "dns", "address": "172.19.0.12"}], -+ "networks": [{ -+ "network_id": "public-ipv4", -+ "type": "ipv4", "netmask": "255.255.252.0", -+ "link": "tap1a81968a-79", -+ "routes": [{ -+ "netmask": "0.0.0.0", -+ "network": "0.0.0.0", -+ "gateway": "172.19.3.254", -+ }], -+ "ip_address": "172.19.1.34", "id": "network0" -+ }, { -+ "network_id": "private-ipv4", -+ "type": "ipv4", "netmask": "255.255.255.0", -+ "link": "tap1a81968a-79", -+ "routes": [], -+ "ip_address": "10.0.0.10", "id": "network1" -+ }], -+ "links": [ -+ { -+ "ethernet_mac_address": "fa:16:3e:ed:9a:59", -+ "mtu": None, "type": "bridge", "id": -+ "tap1a81968a-79", -+ "vif_id": "1a81968a-797a-400f-8a80-567f997eb93f" -+ }, -+ ], -+ }, -+ 'in_macs': { -+ 'fa:16:3e:ed:9a:59': 'eth0', -+ }, -+ 'out_sysconfig': [ -+ ('etc/sysconfig/network-scripts/ifcfg-eth0', -+ """ -+# Created by cloud-init on instance boot automatically, do not edit. -+# -+BOOTPROTO=none -+DEFROUTE=yes -+DEVICE=eth0 -+GATEWAY=172.19.3.254 -+HWADDR=fa:16:3e:ed:9a:59 -+IPADDR=172.19.1.34 -+IPADDR1=10.0.0.10 -+NETMASK=255.255.252.0 -+NETMASK1=255.255.255.0 -+ONBOOT=yes -+TYPE=Ethernet -+USERCTL=no -+""".lstrip()), -+ ('etc/resolv.conf', -+ """ -+; Created by cloud-init on instance boot automatically, do not edit. -+; -+nameserver 172.19.0.12 -+""".lstrip()), -+ ('etc/udev/rules.d/70-persistent-net.rules', -+ "".join(['SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ', -+ 'ATTR{address}=="fa:16:3e:ed:9a:59", NAME="eth0"\n']))] -+ }, -+ { -+ 'in_data': { -+ "services": [{"type": "dns", "address": "172.19.0.12"}], -+ "networks": [{ -+ "network_id": "public-ipv4", -+ "type": "ipv4", "netmask": "255.255.252.0", -+ "link": "tap1a81968a-79", -+ "routes": [{ -+ "netmask": "0.0.0.0", -+ "network": "0.0.0.0", -+ "gateway": "172.19.3.254", -+ }], -+ "ip_address": "172.19.1.34", "id": "network0" -+ }, { -+ "network_id": "public-ipv6-a", -+ "type": "ipv6", "netmask": "", -+ "link": "tap1a81968a-79", -+ "routes": [ -+ { -+ "gateway": "2001:DB8::1", -+ "netmask": "::", -+ "network": "::" -+ } -+ ], -+ "ip_address": "2001:DB8::10", "id": "network1" -+ }, { -+ "network_id": "public-ipv6-b", -+ "type": "ipv6", "netmask": "64", -+ "link": "tap1a81968a-79", -+ "routes": [ -+ ], -+ "ip_address": "2001:DB9::10", "id": "network2" -+ }, { -+ "network_id": "public-ipv6-c", -+ "type": "ipv6", "netmask": "64", -+ "link": "tap1a81968a-79", -+ "routes": [ -+ ], -+ "ip_address": "2001:DB10::10", "id": "network3" -+ }], -+ "links": [ -+ { -+ "ethernet_mac_address": "fa:16:3e:ed:9a:59", -+ "mtu": None, "type": "bridge", "id": -+ "tap1a81968a-79", -+ "vif_id": "1a81968a-797a-400f-8a80-567f997eb93f" -+ }, -+ ], -+ }, -+ 'in_macs': { -+ 'fa:16:3e:ed:9a:59': 'eth0', -+ }, -+ 'out_sysconfig': [ -+ ('etc/sysconfig/network-scripts/ifcfg-eth0', -+ """ -+# Created by cloud-init on instance boot automatically, do not edit. -+# -+BOOTPROTO=none -+DEFROUTE=yes -+DEVICE=eth0 -+GATEWAY=172.19.3.254 -+HWADDR=fa:16:3e:ed:9a:59 -+IPADDR=172.19.1.34 -+IPV6ADDR=2001:DB8::10 -+IPV6ADDR_SECONDARIES="2001:DB9::10/64 2001:DB10::10/64" -+IPV6INIT=yes -+IPV6_DEFAULTGW=2001:DB8::1 -+NETMASK=255.255.252.0 -+ONBOOT=yes -+TYPE=Ethernet -+USERCTL=no -+""".lstrip()), -+ ('etc/resolv.conf', -+ """ -+; Created by cloud-init on instance boot automatically, do not edit. -+; -+nameserver 172.19.0.12 -+""".lstrip()), -+ ('etc/udev/rules.d/70-persistent-net.rules', -+ "".join(['SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ', -+ 'ATTR{address}=="fa:16:3e:ed:9a:59", NAME="eth0"\n']))] - } - ] - diff --git a/SOURCES/0019-Add-missing-sysconfig-unit-test-data.patch b/SOURCES/0019-Add-missing-sysconfig-unit-test-data.patch deleted file mode 100644 index 0ccf679..0000000 --- a/SOURCES/0019-Add-missing-sysconfig-unit-test-data.patch +++ /dev/null @@ -1,66 +0,0 @@ -From daa2bd7c780b91c81154c700aeea25755c53e0a6 Mon Sep 17 00:00:00 2001 -From: Ryan McCabe -Date: Thu, 18 May 2017 23:20:52 -0400 -Subject: [PATCH] Add missing sysconfig unit test data - -This includes portions of upstream commit: -ef18b8ac4cf7e3dfd98830fbdb298380a192a0fc - -Resolves: rhbz#1438082 -X-downstream-only: true ---- - cloudinit/net/sysconfig.py | 2 +- - tests/unittests/test_distros/test_netconfig.py | 27 ++++++++++++++++++++++++++ - 2 files changed, 28 insertions(+), 1 deletion(-) - -diff --git a/cloudinit/net/sysconfig.py b/cloudinit/net/sysconfig.py -index 240ed23..ef80d99 100644 ---- a/cloudinit/net/sysconfig.py -+++ b/cloudinit/net/sysconfig.py -@@ -246,7 +246,7 @@ class Renderer(renderer.Renderer): - def __init__(self, config=None): - if not config: - config = {} -- self.sysconf_dir = config.get('sysconf_dir', 'etc/sysconfig/') -+ self.sysconf_dir = config.get('sysconf_dir', 'etc/sysconfig') - self.netrules_path = config.get( - 'netrules_path', 'etc/udev/rules.d/70-persistent-net.rules') - self.dns_path = config.get('dns_path', 'etc/resolv.conf') -diff --git a/tests/unittests/test_distros/test_netconfig.py b/tests/unittests/test_distros/test_netconfig.py -index 85982cf..23ff570 100644 ---- a/tests/unittests/test_distros/test_netconfig.py -+++ b/tests/unittests/test_distros/test_netconfig.py -@@ -67,6 +67,33 @@ iface eth1 inet6 static - gateway 2607:f0d0:1002:0011::1 - ''' - -+V1_NET_CFG = {'config': [{'name': 'eth0', -+ -+ 'subnets': [{'address': '192.168.1.5', -+ 'broadcast': '192.168.1.0', -+ 'gateway': '192.168.1.254', -+ 'netmask': '255.255.255.0', -+ 'type': 'static'}], -+ 'type': 'physical'}, -+ {'name': 'eth1', -+ 'subnets': [{'control': 'auto', 'type': 'dhcp4'}], -+ 'type': 'physical'}], -+ 'version': 1} -+ -+V1_NET_CFG_IPV6 = {'config': [{'name': 'eth0', -+ 'subnets': [{'address': -+ '2607:f0d0:1002:0011::2', -+ 'gateway': -+ '2607:f0d0:1002:0011::1', -+ 'netmask': '64', -+ 'type': 'static'}], -+ 'type': 'physical'}, -+ {'name': 'eth1', -+ 'subnets': [{'control': 'auto', -+ 'type': 'dhcp4'}], -+ 'type': 'physical'}], -+ 'version': 1} -+ - - class WriteBuffer(object): - def __init__(self): diff --git a/SOURCES/0020-Fix-ipv6-subnet-detection.patch b/SOURCES/0020-Fix-ipv6-subnet-detection.patch deleted file mode 100644 index 2d1fe2b..0000000 --- a/SOURCES/0020-Fix-ipv6-subnet-detection.patch +++ /dev/null @@ -1,57 +0,0 @@ -From bc2e1a64e64bddf04fd3e27c79432facbedca182 Mon Sep 17 00:00:00 2001 -From: Ryan McCabe -Date: Tue, 13 Jun 2017 11:45:07 -0400 -Subject: [PATCH] Fix ipv6 subnet detection - -Add better ipv6 subnet detection that was added as part of a -much larger patch set in upstream commit -ef18b8ac4cf7e3dfd98830fbdb298380a192a0fc - -Related: rhbz#1438082 -X-approved-upstream: true - -Signed-off-by: Ryan McCabe ---- - cloudinit/net/sysconfig.py | 15 +++++++++++++-- - 1 file changed, 13 insertions(+), 2 deletions(-) - -diff --git a/cloudinit/net/sysconfig.py b/cloudinit/net/sysconfig.py -index ef80d99..6a0dd43 100644 ---- a/cloudinit/net/sysconfig.py -+++ b/cloudinit/net/sysconfig.py -@@ -11,6 +11,17 @@ from cloudinit import util - from . import renderer - - -+def _subnet_is_ipv6(subnet): -+ """Common helper for checking network_state subnets for ipv6.""" -+ # 'static6' or 'dhcp6' -+ if subnet['type'].endswith('6'): -+ # This is a request for DHCPv6. -+ return True -+ elif subnet['type'] == 'static' and ":" in subnet['address']: -+ return True -+ return False -+ -+ - def _make_header(sep='#'): - lines = [ - "Created by cloud-init on instance boot automatically, do not edit.", -@@ -286,7 +297,7 @@ class Renderer(renderer.Renderer): - # but should remain 'none' - # if iface_cfg['BOOTPROTO'] == 'none': - # iface_cfg['BOOTPROTO'] = 'static' -- if subnet.get('ipv6'): -+ if _subnet_is_ipv6(subnet): - iface_cfg['IPV6INIT'] = True - else: - raise ValueError("Unknown subnet type '%s' found" -@@ -303,7 +314,7 @@ class Renderer(renderer.Renderer): - elif subnet_type in ['dhcp4', 'dhcp']: - continue - elif subnet_type == 'static': -- if subnet.get('ipv6'): -+ if _subnet_is_ipv6(subnet): - ipv6_index = ipv6_index + 1 - if 'netmask' in subnet and str(subnet['netmask']) != "": - ipv6_cidr = (subnet['address'] + diff --git a/SOURCES/0022-RHEL-CentOS-Fix-default-routes-for-IPv4-IPv6-configu.patch b/SOURCES/0022-RHEL-CentOS-Fix-default-routes-for-IPv4-IPv6-configu.patch deleted file mode 100644 index 66bf585..0000000 --- a/SOURCES/0022-RHEL-CentOS-Fix-default-routes-for-IPv4-IPv6-configu.patch +++ /dev/null @@ -1,61 +0,0 @@ -From 9a7480d13ab3be53f0152a19c68d596490d5d290 Mon Sep 17 00:00:00 2001 -From: Andreas Karis -Date: Tue, 6 Jun 2017 12:55:50 -0400 -Subject: [PATCH] RHEL/CentOS: Fix default routes for IPv4/IPv6 configuration. - -Since f38fa413176, default routes get added to both ifcfg-* and route-* -and route6-* files. Default routes should only go to ifcfg-* files, -otherwise the information is redundant. - -LP: #1696176 -Resolves: rhbz#1438082 - -Signed-off-by: Ryan McCabe -(cherry picked from commit f99745cf916e707eaa1ded6f12e8b69837b7242d) ---- - cloudinit/net/sysconfig.py | 12 +++++++----- - tests/unittests/test_net.py | 8 -------- - 2 files changed, 7 insertions(+), 13 deletions(-) - -diff --git a/cloudinit/net/sysconfig.py b/cloudinit/net/sysconfig.py -index 6a0dd43..c67e6aa 100644 ---- a/cloudinit/net/sysconfig.py -+++ b/cloudinit/net/sysconfig.py -@@ -381,11 +381,13 @@ class Renderer(renderer.Renderer): - nm_key = 'NETMASK%s' % route_cfg.last_idx - addr_key = 'ADDRESS%s' % route_cfg.last_idx - route_cfg.last_idx += 1 -- for (old_key, new_key) in [('gateway', gw_key), -- ('netmask', nm_key), -- ('network', addr_key)]: -- if old_key in route: -- route_cfg[new_key] = route[old_key] -+ # add default routes only to ifcfg files, not -+ # to route-* or route6-* -+ for (old_key, new_key) in [('gateway', gw_key), -+ ('netmask', nm_key), -+ ('network', addr_key)]: -+ if old_key in route: -+ route_cfg[new_key] = route[old_key] - - @classmethod - def _render_bonding_opts(cls, iface_cfg, iface): -diff --git a/tests/unittests/test_net.py b/tests/unittests/test_net.py -index 172d604..45ab732 100755 ---- a/tests/unittests/test_net.py -+++ b/tests/unittests/test_net.py -@@ -148,14 +148,6 @@ ONBOOT=yes - TYPE=Ethernet - USERCTL=no - """.lstrip()), -- ('etc/sysconfig/network-scripts/route-eth0', -- """ --# Created by cloud-init on instance boot automatically, do not edit. --# --ADDRESS0=0.0.0.0 --GATEWAY0=172.19.3.254 --NETMASK0=0.0.0.0 --""".lstrip()), - ('etc/resolv.conf', - """ - ; Created by cloud-init on instance boot automatically, do not edit. diff --git a/SOURCES/0023-DatasourceEc2-add-warning-message-when-not-on-AWS.patch b/SOURCES/0023-DatasourceEc2-add-warning-message-when-not-on-AWS.patch deleted file mode 100644 index df75290..0000000 --- a/SOURCES/0023-DatasourceEc2-add-warning-message-when-not-on-AWS.patch +++ /dev/null @@ -1,261 +0,0 @@ -From aeaaf3f3b3f426a7906a2e03d924b2e42528c600 Mon Sep 17 00:00:00 2001 -From: Scott Moser -Date: Thu, 23 Feb 2017 17:15:27 -0500 -Subject: [PATCH 2/5] DatasourceEc2: add warning message when not on AWS. - -Based on the setting Datasource/Ec2/strict_id, the datasource -will now warn once per instance. - -(cherry picked from commit 9bb55c6c45bcc5e310cf7e4d42cad53759dcca15) - -Resolves: rhbz#1482547 - -Signed-off-by: Ryan McCabe ---- - cloudinit/sources/DataSourceAliYun.py | 4 + - cloudinit/sources/DataSourceEc2.py | 178 +++++++++++++++++++++++++++++++++- - 2 files changed, 180 insertions(+), 2 deletions(-) - -diff --git a/cloudinit/sources/DataSourceAliYun.py b/cloudinit/sources/DataSourceAliYun.py -index 2d00255c..9debe947 100644 ---- a/cloudinit/sources/DataSourceAliYun.py -+++ b/cloudinit/sources/DataSourceAliYun.py -@@ -22,6 +22,10 @@ class DataSourceAliYun(EC2.DataSourceEc2): - def get_public_ssh_keys(self): - return parse_public_keys(self.metadata.get('public-keys', {})) - -+ @property -+ def cloud_platform(self): -+ return EC2.Platforms.ALIYUN -+ - - def parse_public_keys(public_keys): - keys = [] -diff --git a/cloudinit/sources/DataSourceEc2.py b/cloudinit/sources/DataSourceEc2.py -index c657fd09..26da263a 100644 ---- a/cloudinit/sources/DataSourceEc2.py -+++ b/cloudinit/sources/DataSourceEc2.py -@@ -9,6 +9,7 @@ - # This file is part of cloud-init. See LICENSE file for license information. - - import os -+import textwrap - import time - - from cloudinit import ec2_utils as ec2 -@@ -22,12 +23,23 @@ LOG = logging.getLogger(__name__) - # Which version we are requesting of the ec2 metadata apis - DEF_MD_VERSION = '2009-04-04' - -+STRICT_ID_PATH = ("datasource", "Ec2", "strict_id") -+STRICT_ID_DEFAULT = "warn" -+ -+ -+class Platforms(object): -+ ALIYUN = "AliYun" -+ AWS = "AWS" -+ SEEDED = "Seeded" -+ UNKNOWN = "Unknown" -+ - - class DataSourceEc2(sources.DataSource): - # Default metadata urls that will be used if none are provided - # They will be checked for 'resolveability' and some of the - # following may be discarded if they do not resolve - metadata_urls = ["http://169.254.169.254", "http://instance-data.:8773"] -+ _cloud_platform = None - - def __init__(self, sys_cfg, distro, paths): - sources.DataSource.__init__(self, sys_cfg, distro, paths) -@@ -41,8 +53,18 @@ class DataSourceEc2(sources.DataSource): - self.userdata_raw = seed_ret['user-data'] - self.metadata = seed_ret['meta-data'] - LOG.debug("Using seeded ec2 data from %s", self.seed_dir) -+ self._cloud_platform = Platforms.SEEDED - return True - -+ strict_mode, _sleep = read_strict_mode( -+ util.get_cfg_by_path(self.sys_cfg, STRICT_ID_PATH, -+ STRICT_ID_DEFAULT), ("warn", None)) -+ -+ LOG.debug("strict_mode: %s, cloud_platform=%s", -+ strict_mode, self.cloud_platform) -+ if strict_mode == "true" and self.cloud_platform == Platforms.UNKNOWN: -+ return False -+ - try: - if not self.wait_for_metadata_service(): - return False -@@ -51,8 +73,8 @@ class DataSourceEc2(sources.DataSource): - ec2.get_instance_userdata(self.api_ver, self.metadata_address) - self.metadata = ec2.get_instance_metadata(self.api_ver, - self.metadata_address) -- LOG.debug("Crawl of metadata service took %s seconds", -- int(time.time() - start_time)) -+ LOG.debug("Crawl of metadata service took %.3f seconds", -+ time.time() - start_time) - return True - except Exception: - util.logexc(LOG, "Failed reading from metadata address %s", -@@ -190,6 +212,158 @@ class DataSourceEc2(sources.DataSource): - return az[:-1] - return None - -+ @property -+ def cloud_platform(self): -+ if self._cloud_platform is None: -+ self._cloud_platform = identify_platform() -+ return self._cloud_platform -+ -+ def activate(self, cfg, is_new_instance): -+ if not is_new_instance: -+ return -+ if self.cloud_platform == Platforms.UNKNOWN: -+ warn_if_necessary( -+ util.get_cfg_by_path(cfg, STRICT_ID_PATH, STRICT_ID_DEFAULT)) -+ -+ -+def read_strict_mode(cfgval, default): -+ try: -+ return parse_strict_mode(cfgval) -+ except ValueError as e: -+ LOG.warn(e) -+ return default -+ -+ -+def parse_strict_mode(cfgval): -+ # given a mode like: -+ # true, false, warn,[sleep] -+ # return tuple with string mode (true|false|warn) and sleep. -+ if cfgval is True: -+ return 'true', None -+ if cfgval is False: -+ return 'false', None -+ -+ if not cfgval: -+ return 'warn', 0 -+ -+ mode, _, sleep = cfgval.partition(",") -+ if mode not in ('true', 'false', 'warn'): -+ raise ValueError( -+ "Invalid mode '%s' in strict_id setting '%s': " -+ "Expected one of 'true', 'false', 'warn'." % (mode, cfgval)) -+ -+ if sleep: -+ try: -+ sleep = int(sleep) -+ except ValueError: -+ raise ValueError("Invalid sleep '%s' in strict_id setting '%s': " -+ "not an integer" % (sleep, cfgval)) -+ else: -+ sleep = None -+ -+ return mode, sleep -+ -+ -+def warn_if_necessary(cfgval): -+ try: -+ mode, sleep = parse_strict_mode(cfgval) -+ except ValueError as e: -+ LOG.warn(e) -+ return -+ -+ if mode == "false": -+ return -+ -+ show_warning(sleep) -+ -+ -+def show_warning(sleep): -+ message = textwrap.dedent(""" -+ **************************************************************** -+ # This system is using the EC2 Metadata Service, but does not # -+ # appear to be running on Amazon EC2 or one of cloud-init's # -+ # known platforms that provide a EC2 Metadata service. In the # -+ # future, cloud-init may stop reading metadata from the EC2 # -+ # Metadata Service unless the platform can be identified # -+ # # -+ # If you are seeing this message, please file a bug against # -+ # cloud-init at https://bugs.launchpad.net/cloud-init/+filebug # -+ # Make sure to include the cloud provider your instance is # -+ # running on. # -+ # # -+ # For more information see # -+ # https://bugs.launchpad.net/cloud-init/+bug/1660385 # -+ # # -+ # After you have filed a bug, you can disable this warning by # -+ # launching your instance with the cloud-config below, or # -+ # putting that content into # -+ # /etc/cloud/cloud.cfg.d/99-ec2-datasource.cfg # -+ # # -+ # #cloud-config # -+ # datasource: # -+ # Ec2: # -+ # strict_id: false # -+ # # -+ """) -+ closemsg = "" -+ if sleep: -+ closemsg = " [sleeping for %d seconds] " % sleep -+ message += closemsg.center(64, "*") -+ print(message) -+ LOG.warn(message) -+ if sleep: -+ time.sleep(sleep) -+ -+ -+def identify_aws(data): -+ # data is a dictionary returned by _collect_platform_data. -+ if (data['uuid'].startswith('ec2') and -+ (data['uuid_source'] == 'hypervisor' or -+ data['uuid'] == data['serial'])): -+ return Platforms.AWS -+ -+ return None -+ -+ -+def identify_platform(): -+ # identify the platform and return an entry in Platforms. -+ data = _collect_platform_data() -+ checks = (identify_aws, lambda x: Platforms.UNKNOWN) -+ for checker in checks: -+ try: -+ result = checker(data) -+ if result: -+ return result -+ except Exception as e: -+ LOG.warn("calling %s with %s raised exception: %s", -+ checker, data, e) -+ -+ -+def _collect_platform_data(): -+ # returns a dictionary with all lower case values: -+ # uuid: system-uuid from dmi or /sys/hypervisor -+ # uuid_source: 'hypervisor' (/sys/hypervisor/uuid) or 'dmi' -+ # serial: dmi 'system-serial-number' (/sys/.../product_serial) -+ data = {} -+ try: -+ uuid = util.load_file("/sys/hypervisor/uuid").strip() -+ data['uuid_source'] = 'hypervisor' -+ except Exception: -+ uuid = util.read_dmi_data('system-uuid') -+ data['uuid_source'] = 'dmi' -+ -+ if uuid is None: -+ uuid = '' -+ data['uuid'] = uuid.lower() -+ -+ serial = util.read_dmi_data('system-serial-number') -+ if serial is None: -+ serial = '' -+ -+ data['serial'] = serial.lower() -+ -+ return data -+ - - # Used to match classes to dependencies - datasources = [ --- -2.13.5 - diff --git a/SOURCES/0024-Identify-Brightbox-as-an-Ec2-datasource-user.patch b/SOURCES/0024-Identify-Brightbox-as-an-Ec2-datasource-user.patch deleted file mode 100644 index 4cdc8b2..0000000 --- a/SOURCES/0024-Identify-Brightbox-as-an-Ec2-datasource-user.patch +++ /dev/null @@ -1,50 +0,0 @@ -From dcdb2961701ccb0025c8ab45fe76fbaa27ba8133 Mon Sep 17 00:00:00 2001 -From: Scott Moser -Date: Fri, 24 Feb 2017 14:19:20 -0500 -Subject: [PATCH 3/5] Identify Brightbox as an Ec2 datasource user. - -Brightbox will identify their platform to the guest by setting the -product serial to a string that ends with 'brightbox.com'. - -LP: #1661693 -(cherry picked from commit 5dd5b2cb539a84ed59f2b3181020d2bd18989718) - -Resolves: rhbz#1482547 - -Signed-off-by: Ryan McCabe ---- - cloudinit/sources/DataSourceEc2.py | 8 +++++++- - 1 file changed, 7 insertions(+), 1 deletion(-) - -diff --git a/cloudinit/sources/DataSourceEc2.py b/cloudinit/sources/DataSourceEc2.py -index 26da263a..c7df8060 100644 ---- a/cloudinit/sources/DataSourceEc2.py -+++ b/cloudinit/sources/DataSourceEc2.py -@@ -30,6 +30,7 @@ STRICT_ID_DEFAULT = "warn" - class Platforms(object): - ALIYUN = "AliYun" - AWS = "AWS" -+ BRIGHTBOX = "Brightbox" - SEEDED = "Seeded" - UNKNOWN = "Unknown" - -@@ -325,10 +326,15 @@ def identify_aws(data): - return None - - -+def identify_brightbox(data): -+ if data['serial'].endswith('brightbox.com'): -+ return Platforms.BRIGHTBOX -+ -+ - def identify_platform(): - # identify the platform and return an entry in Platforms. - data = _collect_platform_data() -- checks = (identify_aws, lambda x: Platforms.UNKNOWN) -+ checks = (identify_aws, identify_brightbox, lambda x: Platforms.UNKNOWN) - for checker in checks: - try: - result = checker(data) --- -2.13.5 - diff --git a/SOURCES/0025-AliYun-Enable-platform-identification-and-enable-by-.patch b/SOURCES/0025-AliYun-Enable-platform-identification-and-enable-by-.patch deleted file mode 100644 index c7f475f..0000000 --- a/SOURCES/0025-AliYun-Enable-platform-identification-and-enable-by-.patch +++ /dev/null @@ -1,195 +0,0 @@ -From 05561668e42d905cca7d72c2b80a939fbddb2c9d Mon Sep 17 00:00:00 2001 -From: Junjie Wang -Date: Fri, 21 Apr 2017 20:06:09 +0800 -Subject: [PATCH 4/5] AliYun: Enable platform identification and enable by - default. - -AliYun cloud platform is now identifying themselves by setting the dmi -product id to the well known value "Alibaba Cloud ECS". The changes here -identify that properly in tools/ds-identify and in the DataSourceAliYun. - -Since the 'get_data' for AliYun now identifies itself correctly, we can -enable AliYun by default. - -LP: #1638931 -(cherry picked from commit 4a60af54957634920e84a928aa22b4fc9a6dfd11) - -Resolves: rhbz#1482547 - -Signed-off-by: Ryan McCabe ---- - cloudinit/settings.py | 1 + - cloudinit/sources/DataSourceAliYun.py | 14 ++++++- - cloudinit/sources/DataSourceEc2.py | 7 ++++ - tests/unittests/test_datasource/test_aliyun.py | 51 +++++++++++++++++++++++++- - tests/unittests/test_datasource/test_common.py | 1 + - 5 files changed, 71 insertions(+), 3 deletions(-) - -diff --git a/cloudinit/settings.py b/cloudinit/settings.py -index 0d39aab7..d6046dc6 100644 ---- a/cloudinit/settings.py -+++ b/cloudinit/settings.py -@@ -27,6 +27,7 @@ CFG_BUILTIN = { - 'MAAS', - 'GCE', - 'OpenStack', -+ 'AliYun', - 'Ec2', - 'CloudSigma', - 'CloudStack', -diff --git a/cloudinit/sources/DataSourceAliYun.py b/cloudinit/sources/DataSourceAliYun.py -index 9debe947..380e27cb 100644 ---- a/cloudinit/sources/DataSourceAliYun.py -+++ b/cloudinit/sources/DataSourceAliYun.py -@@ -4,8 +4,10 @@ import os - - from cloudinit import sources - from cloudinit.sources import DataSourceEc2 as EC2 -+from cloudinit import util - - DEF_MD_VERSION = "2016-01-01" -+ALIYUN_PRODUCT = "Alibaba Cloud ECS" - - - class DataSourceAliYun(EC2.DataSourceEc2): -@@ -24,7 +26,17 @@ class DataSourceAliYun(EC2.DataSourceEc2): - - @property - def cloud_platform(self): -- return EC2.Platforms.ALIYUN -+ if self._cloud_platform is None: -+ if _is_aliyun(): -+ self._cloud_platform = EC2.Platforms.ALIYUN -+ else: -+ self._cloud_platform = EC2.Platforms.NO_EC2_METADATA -+ -+ return self._cloud_platform -+ -+ -+def _is_aliyun(): -+ return util.read_dmi_data('system-product-name') == ALIYUN_PRODUCT - - - def parse_public_keys(public_keys): -diff --git a/cloudinit/sources/DataSourceEc2.py b/cloudinit/sources/DataSourceEc2.py -index c7df8060..31825665 100644 ---- a/cloudinit/sources/DataSourceEc2.py -+++ b/cloudinit/sources/DataSourceEc2.py -@@ -32,7 +32,12 @@ class Platforms(object): - AWS = "AWS" - BRIGHTBOX = "Brightbox" - SEEDED = "Seeded" -+ # UNKNOWN indicates no positive id. If strict_id is 'warn' or 'false', -+ # then an attempt at the Ec2 Metadata service will be made. - UNKNOWN = "Unknown" -+ # NO_EC2_METADATA indicates this platform does not have a Ec2 metadata -+ # service available. No attempt at the Ec2 Metadata service will be made. -+ NO_EC2_METADATA = "No-EC2-Metadata" - - - class DataSourceEc2(sources.DataSource): -@@ -65,6 +70,8 @@ class DataSourceEc2(sources.DataSource): - strict_mode, self.cloud_platform) - if strict_mode == "true" and self.cloud_platform == Platforms.UNKNOWN: - return False -+ elif self.cloud_platform == Platforms.NO_EC2_METADATA: -+ return False - - try: - if not self.wait_for_metadata_service(): -diff --git a/tests/unittests/test_datasource/test_aliyun.py b/tests/unittests/test_datasource/test_aliyun.py -index c16d1a6e..990bff2c 100644 ---- a/tests/unittests/test_datasource/test_aliyun.py -+++ b/tests/unittests/test_datasource/test_aliyun.py -@@ -2,6 +2,7 @@ - - import functools - import httpretty -+import mock - import os - - from .. import helpers as test_helpers -@@ -111,15 +112,29 @@ class TestAliYunDatasource(test_helpers.HttprettyTestCase): - self.assertEqual(self.default_metadata['hostname'], - self.ds.get_hostname()) - -+ @mock.patch("cloudinit.sources.DataSourceAliYun._is_aliyun") - @httpretty.activate -- def test_with_mock_server(self): -+ def test_with_mock_server(self, m_is_aliyun): -+ m_is_aliyun.return_value = True - self.regist_default_server() -- self.ds.get_data() -+ ret = self.ds.get_data() -+ self.assertEqual(True, ret) -+ self.assertEqual(1, m_is_aliyun.call_count) - self._test_get_data() - self._test_get_sshkey() - self._test_get_iid() - self._test_host_name() - -+ @mock.patch("cloudinit.sources.DataSourceAliYun._is_aliyun") -+ @httpretty.activate -+ def test_returns_false_when_not_on_aliyun(self, m_is_aliyun): -+ """If is_aliyun returns false, then get_data should return False.""" -+ m_is_aliyun.return_value = False -+ self.regist_default_server() -+ ret = self.ds.get_data() -+ self.assertEqual(1, m_is_aliyun.call_count) -+ self.assertEqual(False, ret) -+ - def test_parse_public_keys(self): - public_keys = {} - self.assertEqual(ay.parse_public_keys(public_keys), []) -@@ -149,4 +164,36 @@ class TestAliYunDatasource(test_helpers.HttprettyTestCase): - self.assertEqual(ay.parse_public_keys(public_keys), - public_keys['key-pair-0']['openssh-key']) - -+ -+class TestIsAliYun(test_helpers.CiTestCase): -+ ALIYUN_PRODUCT = 'Alibaba Cloud ECS' -+ read_dmi_data_expected = [mock.call('system-product-name')] -+ -+ @mock.patch("cloudinit.sources.DataSourceAliYun.util.read_dmi_data") -+ def test_true_on_aliyun_product(self, m_read_dmi_data): -+ """Should return true if the dmi product data has expected value.""" -+ m_read_dmi_data.return_value = self.ALIYUN_PRODUCT -+ ret = ay._is_aliyun() -+ self.assertEqual(self.read_dmi_data_expected, -+ m_read_dmi_data.call_args_list) -+ self.assertEqual(True, ret) -+ -+ @mock.patch("cloudinit.sources.DataSourceAliYun.util.read_dmi_data") -+ def test_false_on_empty_string(self, m_read_dmi_data): -+ """Should return false on empty value returned.""" -+ m_read_dmi_data.return_value = "" -+ ret = ay._is_aliyun() -+ self.assertEqual(self.read_dmi_data_expected, -+ m_read_dmi_data.call_args_list) -+ self.assertEqual(False, ret) -+ -+ @mock.patch("cloudinit.sources.DataSourceAliYun.util.read_dmi_data") -+ def test_false_on_unknown_string(self, m_read_dmi_data): -+ """Should return false on an unrelated string.""" -+ m_read_dmi_data.return_value = "cubs win" -+ ret = ay._is_aliyun() -+ self.assertEqual(self.read_dmi_data_expected, -+ m_read_dmi_data.call_args_list) -+ self.assertEqual(False, ret) -+ - # vi: ts=4 expandtab -diff --git a/tests/unittests/test_datasource/test_common.py b/tests/unittests/test_datasource/test_common.py -index c08717f3..7649b9ae 100644 ---- a/tests/unittests/test_datasource/test_common.py -+++ b/tests/unittests/test_datasource/test_common.py -@@ -36,6 +36,7 @@ DEFAULT_LOCAL = [ - ] - - DEFAULT_NETWORK = [ -+ AliYun.DataSourceAliYun, - AltCloud.DataSourceAltCloud, - Azure.DataSourceAzureNet, - Bigstep.DataSourceBigstep, --- -2.13.5 - diff --git a/SOURCES/0026-Fix-alibaba-cloud-unit-tests-to-work-with-0.7.9.patch b/SOURCES/0026-Fix-alibaba-cloud-unit-tests-to-work-with-0.7.9.patch deleted file mode 100644 index 5e34868..0000000 --- a/SOURCES/0026-Fix-alibaba-cloud-unit-tests-to-work-with-0.7.9.patch +++ /dev/null @@ -1,29 +0,0 @@ -From 1a674be4e78d77ed40e3a07385c4cce617476129 Mon Sep 17 00:00:00 2001 -From: Ryan McCabe -Date: Tue, 5 Sep 2017 13:02:00 -0400 -Subject: [PATCH 5/5] Fix alibaba cloud unit tests to work with 0.7.9 - -Resolves: rhbz#1482547 -X-downstream-only: Yes - -Signed-off-by: Ryan McCabe ---- - tests/unittests/test_datasource/test_aliyun.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/tests/unittests/test_datasource/test_aliyun.py b/tests/unittests/test_datasource/test_aliyun.py -index 990bff2c..90454c8d 100644 ---- a/tests/unittests/test_datasource/test_aliyun.py -+++ b/tests/unittests/test_datasource/test_aliyun.py -@@ -165,7 +165,7 @@ class TestAliYunDatasource(test_helpers.HttprettyTestCase): - public_keys['key-pair-0']['openssh-key']) - - --class TestIsAliYun(test_helpers.CiTestCase): -+class TestIsAliYun(test_helpers.HttprettyTestCase): - ALIYUN_PRODUCT = 'Alibaba Cloud ECS' - read_dmi_data_expected = [mock.call('system-product-name')] - --- -2.13.5 - diff --git a/SOURCES/0027-Fix-eni-rendering-of-multiple-IPs-per-interface.patch b/SOURCES/0027-Fix-eni-rendering-of-multiple-IPs-per-interface.patch deleted file mode 100644 index 7767342..0000000 --- a/SOURCES/0027-Fix-eni-rendering-of-multiple-IPs-per-interface.patch +++ /dev/null @@ -1,185 +0,0 @@ -From 335d2b7270c151fd981d9e500f239ab75a59a4b3 Mon Sep 17 00:00:00 2001 -From: Ryan Harper -Date: Wed, 25 Jan 2017 15:45:40 -0600 -Subject: [PATCH] Fix eni rendering of multiple IPs per interface - -The iface:alias syntax for eni rendering is brittle with ipv6. -Replace it with using multiple iface stanzas with the same iface -name which is supported. Side-effect is that one can no longer -do 'ifup $iface:$alias' but requires instead use of ip address -{add|delete} instead. - -LP: #1657940 -(cherry picked from commit 2de1c247e285cce0b25ab70abdc56ccd41019c27) - -Signed-off-by: Ryan McCabe -Resolves: rhbz#bz1497954 ---- - cloudinit/net/eni.py | 33 ++++++++++++++++++-------------- - tests/unittests/test_net.py | 46 +++++++++++++++++++++++++++++++++------------ - 2 files changed, 53 insertions(+), 26 deletions(-) - -diff --git a/cloudinit/net/eni.py b/cloudinit/net/eni.py -index b06ffac9..5b249f1f 100644 ---- a/cloudinit/net/eni.py -+++ b/cloudinit/net/eni.py -@@ -90,8 +90,6 @@ def _iface_add_attrs(iface, index): - - def _iface_start_entry(iface, index, render_hwaddress=False): - fullname = iface['name'] -- if index != 0: -- fullname += ":%s" % index - - control = iface['control'] - if control == "auto": -@@ -113,6 +111,16 @@ def _iface_start_entry(iface, index, render_hwaddress=False): - return lines - - -+def _subnet_is_ipv6(subnet): -+ # 'static6' or 'dhcp6' -+ if subnet['type'].endswith('6'): -+ # This is a request for DHCPv6. -+ return True -+ elif subnet['type'] == 'static' and ":" in subnet['address']: -+ return True -+ return False -+ -+ - def _parse_deb_config_data(ifaces, contents, src_dir, src_path): - """Parses the file contents, placing result into ifaces. - -@@ -354,21 +362,23 @@ class Renderer(renderer.Renderer): - sections = [] - subnets = iface.get('subnets', {}) - if subnets: -- for index, subnet in zip(range(0, len(subnets)), subnets): -+ for index, subnet in enumerate(subnets): - iface['index'] = index - iface['mode'] = subnet['type'] - iface['control'] = subnet.get('control', 'auto') - subnet_inet = 'inet' -- if iface['mode'].endswith('6'): -- # This is a request for DHCPv6. -- subnet_inet += '6' -- elif iface['mode'] == 'static' and ":" in subnet['address']: -- # This is a static IPv6 address. -+ if _subnet_is_ipv6(subnet): - subnet_inet += '6' - iface['inet'] = subnet_inet -- if iface['mode'].startswith('dhcp'): -+ if subnet['type'].startswith('dhcp'): - iface['mode'] = 'dhcp' - -+ # do not emit multiple 'auto $IFACE' lines as older (precise) -+ # ifupdown complains -+ if True in ["auto %s" % (iface['name']) in line -+ for line in sections]: -+ iface['control'] = 'alias' -+ - lines = list( - _iface_start_entry( - iface, index, render_hwaddress=render_hwaddress) + -@@ -378,11 +388,6 @@ class Renderer(renderer.Renderer): - for route in subnet.get('routes', []): - lines.extend(self._render_route(route, indent=" ")) - -- if len(subnets) > 1 and index == 0: -- tmpl = " post-up ifup %s:%s\n" -- for i in range(1, len(subnets)): -- lines.append(tmpl % (iface['name'], i)) -- - sections.append(lines) - else: - # ifenslave docs say to auto the slave devices -diff --git a/tests/unittests/test_net.py b/tests/unittests/test_net.py -index ffa911cc..4c0e3ad3 100644 ---- a/tests/unittests/test_net.py -+++ b/tests/unittests/test_net.py -@@ -376,11 +376,9 @@ NETWORK_CONFIGS = { - - auto eth99 - iface eth99 inet dhcp -- post-up ifup eth99:1 - -- -- auto eth99:1 -- iface eth99:1 inet static -+ # control-alias eth99 -+ iface eth99 inet static - address 192.168.21.3/24 - dns-nameservers 8.8.8.8 8.8.4.4 - dns-search barley.maas sach.maas -@@ -418,6 +416,27 @@ NETWORK_CONFIGS = { - - wark.maas - """), - }, -+ 'v4_and_v6': { -+ 'expected_eni': textwrap.dedent("""\ -+ auto lo -+ iface lo inet loopback -+ -+ auto iface0 -+ iface iface0 inet dhcp -+ -+ # control-alias iface0 -+ iface iface0 inet6 dhcp -+ """).rstrip(' '), -+ 'yaml': textwrap.dedent("""\ -+ version: 1 -+ config: -+ - type: 'physical' -+ name: 'iface0' -+ subnets: -+ - {'type': 'dhcp4'} -+ - {'type': 'dhcp6'} -+ """).rstrip(' '), -+ }, - 'all': { - 'expected_eni': ("""\ - auto lo -@@ -455,11 +474,9 @@ iface br0 inet static - address 192.168.14.2/24 - bridge_ports eth3 eth4 - bridge_stp off -- post-up ifup br0:1 -- - --auto br0:1 --iface br0:1 inet6 static -+# control-alias br0 -+iface br0 inet6 static - address 2001:1::1/64 - - auto bond0.200 -@@ -476,11 +493,9 @@ iface eth0.101 inet static - mtu 1500 - vlan-raw-device eth0 - vlan_id 101 -- post-up ifup eth0.101:1 -- - --auto eth0.101:1 --iface eth0.101:1 inet static -+# control-alias eth0.101 -+iface eth0.101 inet static - address 192.168.2.10/24 - - post-up route add -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true -@@ -1007,6 +1022,13 @@ class TestEniRoundTrip(TestCase): - entry['expected_eni'].splitlines(), - files['/etc/network/interfaces'].splitlines()) - -+ def testsimple_render_v4_and_v6(self): -+ entry = NETWORK_CONFIGS['v4_and_v6'] -+ files = self._render_and_read(network_config=yaml.load(entry['yaml'])) -+ self.assertEqual( -+ entry['expected_eni'].splitlines(), -+ files['/etc/network/interfaces'].splitlines()) -+ - def test_routes_rendered(self): - # as reported in bug 1649652 - conf = [ --- -2.13.6 - diff --git a/SOURCES/0028-systemd-create-run-cloud-init-enabled.patch b/SOURCES/0028-systemd-create-run-cloud-init-enabled.patch deleted file mode 100644 index 7b822e6..0000000 --- a/SOURCES/0028-systemd-create-run-cloud-init-enabled.patch +++ /dev/null @@ -1,29 +0,0 @@ -From e210660ecaee3b44a6e8b4e0fe39e4055450696e Mon Sep 17 00:00:00 2001 -From: Ryan McCabe -Date: Fri, 10 Nov 2017 10:03:44 -0500 -Subject: [PATCH] Create an explicit enabled file in /run/cloud-init/ to - control whether the dhclient and NM hooks run on Azure. - -X-downstream-only: Yes -Resolves: rhbz#1474226 ---- - rhel/systemd/cloud-init-local.service | 3 +++ - 1 file changed, 3 insertions(+) - -diff --git a/rhel/systemd/cloud-init-local.service b/rhel/systemd/cloud-init-local.service -index 8174937b..047907c4 100644 ---- a/rhel/systemd/cloud-init-local.service -+++ b/rhel/systemd/cloud-init-local.service -@@ -14,6 +14,9 @@ ConditionKernelCommandLine=!cloud-init=disabled - - [Service] - Type=oneshot -+ExecStartPre=/bin/mkdir -p /run/cloud-init -+ExecStartPre=/sbin/restorecon /run/cloud-init -+ExecStartPre=/usr/bin/touch /run/cloud-init/enabled - ExecStart=/usr/bin/cloud-init init --local - ExecStart=/bin/touch /run/cloud-init/network-config-ready - RemainAfterExit=yes --- -2.13.6 - diff --git a/SOURCES/0029-support-loopback-as-a-device-type.patch b/SOURCES/0029-support-loopback-as-a-device-type.patch deleted file mode 100644 index 285efc4..0000000 --- a/SOURCES/0029-support-loopback-as-a-device-type.patch +++ /dev/null @@ -1,166 +0,0 @@ -From 8e8e1dffc528b738f92cd508d7a6faf58e40af00 Mon Sep 17 00:00:00 2001 -From: Scott Moser -Date: Wed, 15 Mar 2017 12:06:40 -0400 -Subject: [PATCH 1/2] support 'loopback' as a device type. - -As reported in bug 1671927, sysconfig had an issue with rendering -a loopback device. The problem was that some as yet unknown issue was -causing the openstack config drive to parse the provided ENI file rather -than reading the network_data.json. Parsing an ENI file would add a -a 'lo' device of type 'physical', and sysconfig was failing to render -that. - -The change here is: - a.) add a 'loopback' type rather than 'physical' for network config. - {'name': 'lo', 'type': 'loopback', 'subnets': ['type': 'loopback']} - b.) support skipping that type in the eni and sysconfig renderers. - c.) make network_state just piggy back on 'physical' renderer for - loopback (this was what was happening before). - -Tests are added for eni and sysconfig renderer. - -(cherry picked from commit 1a2ca7530518d819cbab7287b12f942743427e38) - -Related: rhbz#1492726 -Signed-off-by: Ryan McCabe ---- - cloudinit/net/eni.py | 16 +++++++++------ - cloudinit/net/network_state.py | 4 ++++ - cloudinit/net/sysconfig.py | 2 ++ - tests/unittests/test_net.py | 44 ++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 60 insertions(+), 6 deletions(-) - -diff --git a/cloudinit/net/eni.py b/cloudinit/net/eni.py -index 5b249f1f..69ecbb5d 100644 ---- a/cloudinit/net/eni.py -+++ b/cloudinit/net/eni.py -@@ -273,8 +273,11 @@ def _ifaces_to_net_config_data(ifaces): - # devname is 'eth0' for name='eth0:1' - devname = name.partition(":")[0] - if devname not in devs: -- devs[devname] = {'type': 'physical', 'name': devname, -- 'subnets': []} -+ if devname == "lo": -+ dtype = "loopback" -+ else: -+ dtype = "physical" -+ devs[devname] = {'type': dtype, 'name': devname, 'subnets': []} - # this isnt strictly correct, but some might specify - # hwaddress on a nic for matching / declaring name. - if 'hwaddress' in data: -@@ -423,10 +426,11 @@ class Renderer(renderer.Renderer): - bonding - ''' - order = { -- 'physical': 0, -- 'bond': 1, -- 'bridge': 2, -- 'vlan': 3, -+ 'loopback': 0, -+ 'physical': 1, -+ 'bond': 2, -+ 'bridge': 3, -+ 'vlan': 4, - } - - sections = [] -diff --git a/cloudinit/net/network_state.py b/cloudinit/net/network_state.py -index 11ef585b..90b2835a 100644 ---- a/cloudinit/net/network_state.py -+++ b/cloudinit/net/network_state.py -@@ -212,6 +212,10 @@ class NetworkStateInterpreter(object): - LOG.debug(self.dump_network_state()) - - @ensure_command_keys(['name']) -+ def handle_loopback(self, command): -+ return self.handle_physical(command) -+ -+ @ensure_command_keys(['name']) - def handle_physical(self, command): - ''' - command = { -diff --git a/cloudinit/net/sysconfig.py b/cloudinit/net/sysconfig.py -index efd101ca..25c29104 100644 ---- a/cloudinit/net/sysconfig.py -+++ b/cloudinit/net/sysconfig.py -@@ -500,6 +500,8 @@ class Renderer(renderer.Renderer): - '''Given state, return /etc/sysconfig files + contents''' - iface_contents = {} - for iface in network_state.iter_interfaces(): -+ if iface['type'] == "loopback": -+ continue - iface_name = iface['name'] - iface_cfg = NetInterface(iface_name, base_sysconf_dir) - cls._render_iface_shared(iface, iface_cfg) -diff --git a/tests/unittests/test_net.py b/tests/unittests/test_net.py -index 4c0e3ad3..7e389c10 100644 ---- a/tests/unittests/test_net.py -+++ b/tests/unittests/test_net.py -@@ -615,6 +615,14 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true - } - } - -+CONFIG_V1_EXPLICIT_LOOPBACK = { -+ 'version': 1, -+ 'config': [{'name': 'eth0', 'type': 'physical', -+ 'subnets': [{'control': 'auto', 'type': 'dhcp'}]}, -+ {'name': 'lo', 'type': 'loopback', -+ 'subnets': [{'control': 'auto', 'type': 'loopback'}]}, -+ ]} -+ - - def _setup_test(tmp_dir, mock_get_devicelist, mock_read_sys_net, - mock_sys_dev_path): -@@ -785,6 +793,27 @@ USERCTL=no - with open(os.path.join(render_dir, fn)) as fh: - self.assertEqual(expected_content, fh.read()) - -+ def test_config_with_explicit_loopback(self): -+ ns = network_state.parse_net_config_data(CONFIG_V1_EXPLICIT_LOOPBACK) -+ render_dir = self.tmp_path("render") -+ os.makedirs(render_dir) -+ renderer = sysconfig.Renderer() -+ renderer.render_network_state(render_dir, ns) -+ found = dir2dict(render_dir) -+ nspath = '/etc/sysconfig/network-scripts/' -+ self.assertNotIn(nspath + 'ifcfg-lo', found.keys()) -+ expected = """\ -+# Created by cloud-init on instance boot automatically, do not edit. -+# -+BOOTPROTO=dhcp -+DEVICE=eth0 -+NM_CONTROLLED=no -+ONBOOT=yes -+TYPE=Ethernet -+USERCTL=no -+""" -+ self.assertEqual(expected, found[nspath + 'ifcfg-eth0']) -+ - - class TestEniNetRendering(TestCase): - -@@ -826,6 +855,21 @@ iface eth1000 inet dhcp - """ - self.assertEqual(expected.lstrip(), contents.lstrip()) - -+ def test_config_with_explicit_loopback(self): -+ tmp_dir = self.tmp_dir() -+ ns = network_state.parse_net_config_data(CONFIG_V1_EXPLICIT_LOOPBACK) -+ renderer = eni.Renderer() -+ renderer.render_network_state(tmp_dir, ns) -+ expected = """\ -+auto lo -+iface lo inet loopback -+ -+auto eth0 -+iface eth0 inet dhcp -+""" -+ self.assertEqual( -+ expected, dir2dict(tmp_dir)['/etc/network/interfaces']) -+ - - class TestEniNetworkStateToEni(TestCase): - mycfg = { --- -2.13.6 - diff --git a/SOURCES/0030-sysconfig-include-GATEWAY-value-if-set-in-subnet.patch b/SOURCES/0030-sysconfig-include-GATEWAY-value-if-set-in-subnet.patch deleted file mode 100644 index 8b911fd..0000000 --- a/SOURCES/0030-sysconfig-include-GATEWAY-value-if-set-in-subnet.patch +++ /dev/null @@ -1,142 +0,0 @@ -From 8fd2f03c40606ad25135385f7badf42e48d713b6 Mon Sep 17 00:00:00 2001 -From: Ryan Harper -Date: Fri, 9 Jun 2017 12:35:11 -0500 -Subject: [PATCH 2/2] sysconfig: include GATEWAY value if set in subnet - -Render the GATEWAY= value in interface files which have a gateway in the -subnet configuration. - -LP: #1686856 -(cherry picked from commit d1e8eb73aca6a3f5cee415774dcf540e934ec250) - -Resolves: rhbz#1465730 -Signed-off-by: Ryan McCabe -(cherry picked from commit 158f53f223b763ddfbfa5967c58866424ae02689) - -Resolves: rhbz#1492726 -Signed-off-by: Ryan McCabe ---- - cloudinit/net/sysconfig.py | 3 ++ - tests/unittests/test_distros/test_netconfig.py | 2 ++ - tests/unittests/test_net.py | 50 +++++++++++++++++++++++++- - 3 files changed, 54 insertions(+), 1 deletion(-) - -diff --git a/cloudinit/net/sysconfig.py b/cloudinit/net/sysconfig.py -index 25c29104..ca031691 100644 ---- a/cloudinit/net/sysconfig.py -+++ b/cloudinit/net/sysconfig.py -@@ -347,6 +347,9 @@ class Renderer(renderer.Renderer): - iface_cfg['NETMASK' + str(ipv4_index)] = \ - subnet['netmask'] - -+ if 'gateway' in subnet: -+ iface_cfg['GATEWAY'] = subnet['gateway'] -+ - @classmethod - def _render_subnet_routes(cls, iface_cfg, route_cfg, subnets): - for i, subnet in enumerate(subnets, start=len(iface_cfg.children)): -diff --git a/tests/unittests/test_distros/test_netconfig.py b/tests/unittests/test_distros/test_netconfig.py -index 861cf8ef..108d5741 100644 ---- a/tests/unittests/test_distros/test_netconfig.py -+++ b/tests/unittests/test_distros/test_netconfig.py -@@ -260,6 +260,7 @@ BOOTPROTO=none - DEVICE=eth0 - IPADDR=192.168.1.5 - NETMASK=255.255.255.0 -+GATEWAY=192.168.1.254 - ONBOOT=yes - TYPE=Ethernet - USERCTL=no -@@ -396,6 +397,7 @@ IPV6_AUTOCONF=no - BOOTPROTO=none - DEVICE=eth0 - IPV6ADDR=2607:f0d0:1002:0011::2/64 -+GATEWAY=2607:f0d0:1002:0011::1 - IPV6INIT=yes - ONBOOT=yes - TYPE=Ethernet -diff --git a/tests/unittests/test_net.py b/tests/unittests/test_net.py -index 7e389c10..4a32eb88 100644 ---- a/tests/unittests/test_net.py -+++ b/tests/unittests/test_net.py -@@ -615,6 +615,7 @@ pre-down route del -net 10.0.0.0 netmask 255.0.0.0 gw 11.0.0.1 metric 3 || true - } - } - -+ - CONFIG_V1_EXPLICIT_LOOPBACK = { - 'version': 1, - 'config': [{'name': 'eth0', 'type': 'physical', -@@ -624,6 +625,30 @@ CONFIG_V1_EXPLICIT_LOOPBACK = { - ]} - - -+CONFIG_V1_SIMPLE_SUBNET = { -+ 'version': 1, -+ 'config': [{'mac_address': '52:54:00:12:34:00', -+ 'name': 'interface0', -+ 'subnets': [{'address': '10.0.2.15', -+ 'gateway': '10.0.2.2', -+ 'netmask': '255.255.255.0', -+ 'type': 'static'}], -+ 'type': 'physical'}]} -+ -+ -+DEFAULT_DEV_ATTRS = { -+ 'eth1000': { -+ "bridge": False, -+ "carrier": False, -+ "dormant": False, -+ "operstate": "down", -+ "address": "07-1C-C6-75-A4-BE", -+ "device/driver": None, -+ "device/device": None, -+ } -+} -+ -+ - def _setup_test(tmp_dir, mock_get_devicelist, mock_read_sys_net, - mock_sys_dev_path): - mock_get_devicelist.return_value = ['eth1000'] -@@ -793,6 +818,30 @@ USERCTL=no - with open(os.path.join(render_dir, fn)) as fh: - self.assertEqual(expected_content, fh.read()) - -+ def test_network_config_v1_samples(self): -+ ns = network_state.parse_net_config_data(CONFIG_V1_SIMPLE_SUBNET) -+ render_dir = self.tmp_path("render") -+ os.makedirs(render_dir) -+ renderer = sysconfig.Renderer() -+ renderer.render_network_state(render_dir, ns) -+ found = dir2dict(render_dir) -+ nspath = '/etc/sysconfig/network-scripts/' -+ self.assertNotIn(nspath + 'ifcfg-lo', found.keys()) -+ expected = """\ -+# Created by cloud-init on instance boot automatically, do not edit. -+# -+BOOTPROTO=none -+DEVICE=interface0 -+GATEWAY=10.0.2.2 -+HWADDR=52:54:00:12:34:00 -+IPADDR=10.0.2.15 -+NETMASK=255.255.255.0 -+ONBOOT=yes -+TYPE=Ethernet -+USERCTL=no -+""" -+ self.assertEqual(expected, found[nspath + 'ifcfg-interface0']) -+ - def test_config_with_explicit_loopback(self): - ns = network_state.parse_net_config_data(CONFIG_V1_EXPLICIT_LOOPBACK) - render_dir = self.tmp_path("render") -@@ -807,7 +856,6 @@ USERCTL=no - # - BOOTPROTO=dhcp - DEVICE=eth0 --NM_CONTROLLED=no - ONBOOT=yes - TYPE=Ethernet - USERCTL=no --- -2.13.6 - diff --git a/SOURCES/0031-rh_subscription-Perform-null-checks-for-enabled-and-.patch b/SOURCES/0031-rh_subscription-Perform-null-checks-for-enabled-and-.patch deleted file mode 100644 index 4ded147..0000000 --- a/SOURCES/0031-rh_subscription-Perform-null-checks-for-enabled-and-.patch +++ /dev/null @@ -1,190 +0,0 @@ -From fc4ca923d02886669f2f0e0916732133e1969bb6 Mon Sep 17 00:00:00 2001 -From: Dave Mulford -Date: Mon, 9 Oct 2017 15:28:15 -0500 -Subject: [PATCH] rh_subscription: Perform null checks for enabled and disabled - repos. - -The rh_subscription module doesn't perform null checks when attempting to -iterate on the enabled and disable repos arrays. When only one is -specified, cloud-init fails to run. - -(cherry picked from commit 9bc4ce0596544ffa56d9d67245b00e07006a8662) - -Resolves: rhbz#1498974 -Signed-off-by: Ryan McCabe ---- - cloudinit/config/cc_rh_subscription.py | 46 ++++++++++++++++++++------------- - tests/unittests/test_rh_subscription.py | 15 +++++++++++ - 2 files changed, 43 insertions(+), 18 deletions(-) - -diff --git a/cloudinit/config/cc_rh_subscription.py b/cloudinit/config/cc_rh_subscription.py -index 7f36cf8f..a9d21e78 100644 ---- a/cloudinit/config/cc_rh_subscription.py -+++ b/cloudinit/config/cc_rh_subscription.py -@@ -38,14 +38,16 @@ Subscription`` example config. - server-hostname: - """ - -+from cloudinit import log as logging - from cloudinit import util - -+LOG = logging.getLogger(__name__) -+ - distros = ['fedora', 'rhel'] - - - def handle(name, cfg, _cloud, log, _args): -- sm = SubscriptionManager(cfg) -- sm.log = log -+ sm = SubscriptionManager(cfg, log=log) - if not sm.is_configured(): - log.debug("%s: module not configured.", name) - return None -@@ -86,10 +88,9 @@ def handle(name, cfg, _cloud, log, _args): - if not return_stat: - raise SubscriptionError("Unable to attach pools {0}" - .format(sm.pools)) -- if (sm.enable_repo is not None) or (sm.disable_repo is not None): -- return_stat = sm.update_repos(sm.enable_repo, sm.disable_repo) -- if not return_stat: -- raise SubscriptionError("Unable to add or remove repos") -+ return_stat = sm.update_repos() -+ if not return_stat: -+ raise SubscriptionError("Unable to add or remove repos") - sm.log_success("rh_subscription plugin completed successfully") - except SubscriptionError as e: - sm.log_warn(str(e)) -@@ -108,7 +109,10 @@ class SubscriptionManager(object): - 'rhsm-baseurl', 'server-hostname', - 'auto-attach', 'service-level'] - -- def __init__(self, cfg): -+ def __init__(self, cfg, log=None): -+ if log is None: -+ log = LOG -+ self.log = log - self.cfg = cfg - self.rhel_cfg = self.cfg.get('rh_subscription', {}) - self.rhsm_baseurl = self.rhel_cfg.get('rhsm-baseurl') -@@ -130,7 +134,7 @@ class SubscriptionManager(object): - - def log_warn(self, msg): - '''Simple wrapper for logging warning messages. Useful for unittests''' -- self.log.warn(msg) -+ self.log.warning(msg) - - def _verify_keys(self): - ''' -@@ -245,7 +249,7 @@ class SubscriptionManager(object): - return False - - reg_id = return_out.split("ID: ")[1].rstrip() -- self.log.debug("Registered successfully with ID {0}".format(reg_id)) -+ self.log.debug("Registered successfully with ID %s", reg_id) - return True - - def _set_service_level(self): -@@ -347,7 +351,7 @@ class SubscriptionManager(object): - try: - self._sub_man_cli(cmd) - self.log.debug("Attached the following pools to your " -- "system: %s" % (", ".join(pool_list)) -+ "system: %s", (", ".join(pool_list)) - .replace('--pool=', '')) - return True - except util.ProcessExecutionError as e: -@@ -355,18 +359,24 @@ class SubscriptionManager(object): - "due to {1}".format(pool, e)) - return False - -- def update_repos(self, erepos, drepos): -+ def update_repos(self): - ''' - Takes a list of yum repo ids that need to be disabled or enabled; then - it verifies if they are already enabled or disabled and finally - executes the action to disable or enable - ''' - -- if (erepos is not None) and (not isinstance(erepos, list)): -+ erepos = self.enable_repo -+ drepos = self.disable_repo -+ if erepos is None: -+ erepos = [] -+ if drepos is None: -+ drepos = [] -+ if not isinstance(erepos, list): - self.log_warn("Repo IDs must in the format of a list.") - return False - -- if (drepos is not None) and (not isinstance(drepos, list)): -+ if not isinstance(drepos, list): - self.log_warn("Repo IDs must in the format of a list.") - return False - -@@ -399,14 +409,14 @@ class SubscriptionManager(object): - for fail in enable_list_fail: - # Check if the repo exists or not - if fail in active_repos: -- self.log.debug("Repo {0} is already enabled".format(fail)) -+ self.log.debug("Repo %s is already enabled", fail) - else: - self.log_warn("Repo {0} does not appear to " - "exist".format(fail)) - if len(disable_list_fail) > 0: - for fail in disable_list_fail: -- self.log.debug("Repo {0} not disabled " -- "because it is not enabled".format(fail)) -+ self.log.debug("Repo %s not disabled " -+ "because it is not enabled", fail) - - cmd = ['repos'] - if len(disable_list) > 0: -@@ -422,10 +432,10 @@ class SubscriptionManager(object): - return False - - if len(enable_list) > 0: -- self.log.debug("Enabled the following repos: %s" % -+ self.log.debug("Enabled the following repos: %s", - (", ".join(enable_list)).replace('--enable=', '')) - if len(disable_list) > 0: -- self.log.debug("Disabled the following repos: %s" % -+ self.log.debug("Disabled the following repos: %s", - (", ".join(disable_list)).replace('--disable=', '')) - return True - -diff --git a/tests/unittests/test_rh_subscription.py b/tests/unittests/test_rh_subscription.py -index ca14cd46..7b35b9d0 100644 ---- a/tests/unittests/test_rh_subscription.py -+++ b/tests/unittests/test_rh_subscription.py -@@ -2,6 +2,7 @@ - - """Tests for registering RHEL subscription via rh_subscription.""" - -+import copy - import logging - - from cloudinit.config import cc_rh_subscription -@@ -68,6 +69,20 @@ class GoodTests(TestCase): - self.assertEqual(self.SM.log_success.call_count, 1) - self.assertEqual(self.SM._sub_man_cli.call_count, 2) - -+ @mock.patch.object(cc_rh_subscription.SubscriptionManager, "_getRepos") -+ @mock.patch.object(cc_rh_subscription.SubscriptionManager, "_sub_man_cli") -+ def test_update_repos_disable_with_none(self, m_sub_man_cli, m_get_repos): -+ cfg = copy.deepcopy(self.config) -+ m_get_repos.return_value = ([], ['repo1']) -+ m_sub_man_cli.return_value = (b'', b'') -+ cfg['rh_subscription'].update( -+ {'enable-repo': ['repo1'], 'disable-repo': None}) -+ mysm = cc_rh_subscription.SubscriptionManager(cfg) -+ self.assertEqual(True, mysm.update_repos()) -+ m_get_repos.assert_called_with() -+ self.assertEqual(m_sub_man_cli.call_args_list, -+ [mock.call(['repos', '--enable=repo1'])]) -+ - def test_full_registration(self): - ''' - Registration with auto-attach, service-level, adding pools, --- -2.13.6 - diff --git a/SOURCES/0032-net-Allow-for-NetworkManager-configuration.patch b/SOURCES/0032-net-Allow-for-NetworkManager-configuration.patch deleted file mode 100644 index 72f6157..0000000 --- a/SOURCES/0032-net-Allow-for-NetworkManager-configuration.patch +++ /dev/null @@ -1,164 +0,0 @@ -From 5fc5da29e5187ff6f56c968e7c06fabd1fce62ad Mon Sep 17 00:00:00 2001 -From: Ryan McCabe -Date: Thu, 8 Jun 2017 13:24:23 -0400 -Subject: [PATCH] net: Allow for NetworkManager configuration - -In cases where the config json specifies nameserver entries, -if there are interfaces configured to use dhcp, NetworkManager, -if enabled, will clobber the /etc/resolv.conf that cloud-init -has produced, which can break dns. If there are no interfaces -configured to use dhcp, NetworkManager could clobber -/etc/resolv.conf with an empty file. - -This patch adds a mechanism for dropping additional configuration -into /etc/NetworkManager/conf.d/ and disables management of -/etc/resolv.conf by NetworkManager when nameserver information is -provided in the config. - -LP: #1693251 - -Resolves: rhbz#1454491 - -Signed-off-by: Ryan McCabe -(cherry picked from commit 67bab5bb804e2346673430868935f6bbcdb88f13) ---- - cloudinit/distros/parsers/networkmanager_conf.py | 23 +++++++++++++++++++++++ - cloudinit/net/sysconfig.py | 24 ++++++++++++++++++++++++ - tests/unittests/test_net.py | 21 +++++++++++++++++++++ - 3 files changed, 68 insertions(+) - create mode 100644 cloudinit/distros/parsers/networkmanager_conf.py - -diff --git a/cloudinit/distros/parsers/networkmanager_conf.py b/cloudinit/distros/parsers/networkmanager_conf.py -new file mode 100644 -index 00000000..ac51f122 ---- /dev/null -+++ b/cloudinit/distros/parsers/networkmanager_conf.py -@@ -0,0 +1,23 @@ -+# Copyright (C) 2017 Red Hat, Inc. -+# -+# Author: Ryan McCabe -+# -+# This file is part of cloud-init. See LICENSE file for license information. -+ -+import configobj -+ -+# This module is used to set additional NetworkManager configuration -+# in /etc/NetworkManager/conf.d -+# -+ -+ -+class NetworkManagerConf(configobj.ConfigObj): -+ def __init__(self, contents): -+ configobj.ConfigObj.__init__(self, contents, -+ interpolation=False, -+ write_empty_values=False) -+ -+ def set_section_keypair(self, section_name, key, value): -+ if section_name not in self.sections: -+ self.main[section_name] = {} -+ self.main[section_name] = {key: value} -diff --git a/cloudinit/net/sysconfig.py b/cloudinit/net/sysconfig.py -index ef80d99b..d496d916 100644 ---- a/cloudinit/net/sysconfig.py -+++ b/cloudinit/net/sysconfig.py -@@ -5,6 +5,7 @@ import re - - import six - -+from cloudinit.distros.parsers import networkmanager_conf - from cloudinit.distros.parsers import resolv_conf - from cloudinit import util - -@@ -250,6 +251,9 @@ class Renderer(renderer.Renderer): - self.netrules_path = config.get( - 'netrules_path', 'etc/udev/rules.d/70-persistent-net.rules') - self.dns_path = config.get('dns_path', 'etc/resolv.conf') -+ nm_conf_path = 'etc/NetworkManager/conf.d/99-cloud-init.conf' -+ self.networkmanager_conf_path = config.get('networkmanager_conf_path', -+ nm_conf_path) - - @classmethod - def _render_iface_shared(cls, iface, iface_cfg): -@@ -443,6 +447,21 @@ class Renderer(renderer.Renderer): - content.add_search_domain(searchdomain) - return "\n".join([_make_header(';'), str(content)]) - -+ @staticmethod -+ def _render_networkmanager_conf(network_state): -+ content = networkmanager_conf.NetworkManagerConf("") -+ -+ # If DNS server information is provided, configure -+ # NetworkManager to not manage dns, so that /etc/resolv.conf -+ # does not get clobbered. -+ if network_state.dns_nameservers: -+ content.set_section_keypair('main', 'dns', 'none') -+ -+ if len(content) == 0: -+ return None -+ out = "".join([_make_header(), "\n", "\n".join(content.write()), "\n"]) -+ return out -+ - @classmethod - def _render_bridge_interfaces(cls, network_state, iface_contents): - bridge_filter = renderer.filter_by_type('bridge') -@@ -500,6 +519,11 @@ class Renderer(renderer.Renderer): - resolv_content = self._render_dns(network_state, - existing_dns_path=dns_path) - util.write_file(dns_path, resolv_content) -+ if self.networkmanager_conf_path: -+ nm_conf_path = os.path.join(target, self.networkmanager_conf_path) -+ nm_conf_content = self._render_networkmanager_conf(network_state) -+ if nm_conf_content: -+ util.write_file(nm_conf_path, nm_conf_content) - if self.netrules_path: - netrules_content = self._render_persistent_net(network_state) - netrules_path = os.path.join(target, self.netrules_path) -diff --git a/tests/unittests/test_net.py b/tests/unittests/test_net.py -index 172d6046..379ac8bb 100755 ---- a/tests/unittests/test_net.py -+++ b/tests/unittests/test_net.py -@@ -162,6 +162,13 @@ NETMASK0=0.0.0.0 - ; - nameserver 172.19.0.12 - """.lstrip()), -+ ('etc/NetworkManager/conf.d/99-cloud-init.conf', -+ """ -+# Created by cloud-init on instance boot automatically, do not edit. -+# -+[main] -+dns = none -+""".lstrip()), - ('etc/udev/rules.d/70-persistent-net.rules', - "".join(['SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ', - 'ATTR{address}=="fa:16:3e:ed:9a:59", NAME="eth0"\n']))] -@@ -222,6 +229,13 @@ USERCTL=no - ; - nameserver 172.19.0.12 - """.lstrip()), -+ ('etc/NetworkManager/conf.d/99-cloud-init.conf', -+ """ -+# Created by cloud-init on instance boot automatically, do not edit. -+# -+[main] -+dns = none -+""".lstrip()), - ('etc/udev/rules.d/70-persistent-net.rules', - "".join(['SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ', - 'ATTR{address}=="fa:16:3e:ed:9a:59", NAME="eth0"\n']))] -@@ -304,6 +318,13 @@ USERCTL=no - ; - nameserver 172.19.0.12 - """.lstrip()), -+ ('etc/NetworkManager/conf.d/99-cloud-init.conf', -+ """ -+# Created by cloud-init on instance boot automatically, do not edit. -+# -+[main] -+dns = none -+""".lstrip()), - ('etc/udev/rules.d/70-persistent-net.rules', - "".join(['SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ', - 'ATTR{address}=="fa:16:3e:ed:9a:59", NAME="eth0"\n']))] --- -2.13.6 - diff --git a/SOURCES/0033-Render-DNS-and-DOMAIN-lines-for-sysconfig.patch b/SOURCES/0033-Render-DNS-and-DOMAIN-lines-for-sysconfig.patch deleted file mode 100644 index ee129d4..0000000 --- a/SOURCES/0033-Render-DNS-and-DOMAIN-lines-for-sysconfig.patch +++ /dev/null @@ -1,89 +0,0 @@ -From 3774ec0a9873b4dfbc647ee57f16fe461706c1b2 Mon Sep 17 00:00:00 2001 -From: Ryan McCabe -Date: Tue, 21 Nov 2017 11:50:18 -0500 -Subject: [PATCH] Render DNS and DOMAIN lines for sysconfig - -Currently when dns and dns search info is provided, it is not -rendered when outputting to sysconfig format. - -This patch causes the DNS and DOMAIN lines to be written out rendering -sysconfig. - -This is a backport of upstream commit -bbe91cdc6917adb503b455e6860c21ea7b3f567f which will not apply to the -0.7.9 tree. - -Signed-off-by: Ryan McCabe -Resolves: rhbz#1489270 ---- - cloudinit/net/sysconfig.py | 17 +++++++++++++++++ - tests/unittests/test_net.py | 11 ++++++++--- - 2 files changed, 25 insertions(+), 3 deletions(-) - -diff --git a/cloudinit/net/sysconfig.py b/cloudinit/net/sysconfig.py -index ca031691..e34c8491 100644 ---- a/cloudinit/net/sysconfig.py -+++ b/cloudinit/net/sysconfig.py -@@ -350,6 +350,23 @@ class Renderer(renderer.Renderer): - if 'gateway' in subnet: - iface_cfg['GATEWAY'] = subnet['gateway'] - -+ if 'dns_search' in subnet: -+ if isinstance(subnet['dns_search'], (list, tuple)): -+ # Currently limited to 6 entries per resolv.conf(5) -+ search_list = subnet['dns_search'][:6] -+ iface_cfg['DOMAIN'] = ' '.join(search_list) -+ else: -+ iface_cfg['DOMAIN'] = subnet['dns_search'] -+ -+ if 'dns_nameservers' in subnet: -+ if isinstance(subnet['dns_search'], (list, tuple)): -+ # Currently limited to 3 entries per resolv.conf(5) -+ dns_list = subnet['dns_nameservers'][:3] -+ for i, k in enumerate(dns_list, 1): -+ iface_cfg['DNS' + str(i)] = k -+ else: -+ iface_cfg['DNS1'] = subnet['dns_nameservers'] -+ - @classmethod - def _render_subnet_routes(cls, iface_cfg, route_cfg, subnets): - for i, subnet in enumerate(subnets, start=len(iface_cfg.children)): -diff --git a/tests/unittests/test_net.py b/tests/unittests/test_net.py -index 4a32eb88..551370d4 100644 ---- a/tests/unittests/test_net.py -+++ b/tests/unittests/test_net.py -@@ -820,7 +820,9 @@ USERCTL=no - - def test_network_config_v1_samples(self): - ns = network_state.parse_net_config_data(CONFIG_V1_SIMPLE_SUBNET) -- render_dir = self.tmp_path("render") -+ tmp_dir = tempfile.mkdtemp() -+ self.addCleanup(shutil.rmtree, tmp_dir) -+ render_dir = os.path.join(tmp_dir, "render") - os.makedirs(render_dir) - renderer = sysconfig.Renderer() - renderer.render_network_state(render_dir, ns) -@@ -844,7 +846,9 @@ USERCTL=no - - def test_config_with_explicit_loopback(self): - ns = network_state.parse_net_config_data(CONFIG_V1_EXPLICIT_LOOPBACK) -- render_dir = self.tmp_path("render") -+ tmp_dir = tempfile.mkdtemp() -+ self.addCleanup(shutil.rmtree, tmp_dir) -+ render_dir = os.path.join(tmp_dir, "render") - os.makedirs(render_dir) - renderer = sysconfig.Renderer() - renderer.render_network_state(render_dir, ns) -@@ -904,7 +908,8 @@ iface eth1000 inet dhcp - self.assertEqual(expected.lstrip(), contents.lstrip()) - - def test_config_with_explicit_loopback(self): -- tmp_dir = self.tmp_dir() -+ tmp_dir = tempfile.mkdtemp() -+ self.addCleanup(shutil.rmtree, tmp_dir) - ns = network_state.parse_net_config_data(CONFIG_V1_EXPLICIT_LOOPBACK) - renderer = eni.Renderer() - renderer.render_network_state(tmp_dir, ns) --- -2.13.6 - diff --git a/SOURCES/0034-Start_cloud_init_after_dbus.patch b/SOURCES/0034-Start_cloud_init_after_dbus.patch deleted file mode 100644 index 06419c0..0000000 --- a/SOURCES/0034-Start_cloud_init_after_dbus.patch +++ /dev/null @@ -1,18 +0,0 @@ -diff --git a/rhel/systemd/cloud-init-local.service b/rhel/systemd/cloud-init-local.service -index 047907c4..656eddb9 100644 ---- a/rhel/systemd/cloud-init-local.service -+++ b/rhel/systemd/cloud-init-local.service -@@ -3,10 +3,12 @@ Description=Initial cloud-init job (pre-networking) - DefaultDependencies=no - Wants=network-pre.target - After=systemd-remount-fs.service -+Requires=dbus.socket -+After=dbus.socket - Before=NetworkManager.service network.service - Before=network-pre.target - Before=shutdown.target --Before=sysinit.target -+Before=firewalld.target - Conflicts=shutdown.target - RequiresMountsFor=/var/lib/cloud - ConditionPathExists=!/etc/cloud/cloud-init.disabled diff --git a/SOURCES/0035-sysconfig-Render-IPV6_DEFAULTGW-correctly.patch b/SOURCES/0035-sysconfig-Render-IPV6_DEFAULTGW-correctly.patch deleted file mode 100644 index 8aaa988..0000000 --- a/SOURCES/0035-sysconfig-Render-IPV6_DEFAULTGW-correctly.patch +++ /dev/null @@ -1,74 +0,0 @@ -From cee7eef674c4fe7e4a23e5c358df23064796e9e2 Mon Sep 17 00:00:00 2001 -From: Ryan McCabe -Date: Thu, 30 Nov 2017 08:59:03 -0500 -Subject: [PATCH] sysconfig: Render IPV6_DEFAULTGW correctly - -Downstream backport of the fixes introduced in upstream commit -97abd83513bee191b58f095f4d683b18acce0b49 which will not apply to -the RHEL 0.7.9 tree. - -Signed-off-by: Ryan McCabe -Resolves: rhbz#1492726 ---- - cloudinit/net/sysconfig.py | 6 +++++- - tests/unittests/test_distros/test_netconfig.py | 4 +++- - tests/unittests/test_net.py | 1 + - 3 files changed, 9 insertions(+), 2 deletions(-) - -diff --git a/cloudinit/net/sysconfig.py b/cloudinit/net/sysconfig.py -index e34c8491..380daedf 100644 ---- a/cloudinit/net/sysconfig.py -+++ b/cloudinit/net/sysconfig.py -@@ -348,7 +348,11 @@ class Renderer(renderer.Renderer): - subnet['netmask'] - - if 'gateway' in subnet: -- iface_cfg['GATEWAY'] = subnet['gateway'] -+ iface_cfg['DEFROUTE'] = True -+ if ":" in subnet['gateway']: -+ iface_cfg['IPV6_DEFAULTGW'] = subnet['gateway'] -+ else: -+ iface_cfg['GATEWAY'] = subnet['gateway'] - - if 'dns_search' in subnet: - if isinstance(subnet['dns_search'], (list, tuple)): -diff --git a/tests/unittests/test_distros/test_netconfig.py b/tests/unittests/test_distros/test_netconfig.py -index 108d5741..10e25a72 100644 ---- a/tests/unittests/test_distros/test_netconfig.py -+++ b/tests/unittests/test_distros/test_netconfig.py -@@ -257,6 +257,7 @@ NETWORKING=yes - # Created by cloud-init on instance boot automatically, do not edit. - # - BOOTPROTO=none -+DEFROUTE=yes - DEVICE=eth0 - IPADDR=192.168.1.5 - NETMASK=255.255.255.0 -@@ -395,10 +396,11 @@ IPV6_AUTOCONF=no - # Created by cloud-init on instance boot automatically, do not edit. - # - BOOTPROTO=none -+DEFROUTE=yes - DEVICE=eth0 - IPV6ADDR=2607:f0d0:1002:0011::2/64 --GATEWAY=2607:f0d0:1002:0011::1 - IPV6INIT=yes -+IPV6_DEFAULTGW=2607:f0d0:1002:0011::1 - ONBOOT=yes - TYPE=Ethernet - USERCTL=no -diff --git a/tests/unittests/test_net.py b/tests/unittests/test_net.py -index 551370d4..34af5daa 100644 ---- a/tests/unittests/test_net.py -+++ b/tests/unittests/test_net.py -@@ -833,6 +833,7 @@ USERCTL=no - # Created by cloud-init on instance boot automatically, do not edit. - # - BOOTPROTO=none -+DEFROUTE=yes - DEVICE=interface0 - GATEWAY=10.0.2.2 - HWADDR=52:54:00:12:34:00 --- -2.14.3 - diff --git a/SOURCES/0036-sysconfig-Don-t-write-BOOTPROTO-dhcp-for-ipv6-dhcp.patch b/SOURCES/0036-sysconfig-Don-t-write-BOOTPROTO-dhcp-for-ipv6-dhcp.patch deleted file mode 100644 index b34b8bc..0000000 --- a/SOURCES/0036-sysconfig-Don-t-write-BOOTPROTO-dhcp-for-ipv6-dhcp.patch +++ /dev/null @@ -1,32 +0,0 @@ -From cbc09ba2f8e6fa967232039e6f6a3363d54ba592 Mon Sep 17 00:00:00 2001 -From: Ryan McCabe -Date: Mon, 4 Dec 2017 13:43:30 -0500 -Subject: [PATCH] sysconfig: Don't write BOOTPROTO=dhcp for ipv6 dhcp - -Don't write BOOTPROTO=dhcp for ipv6 dhcp, as BOOTPROTO applies -only to ipv4. Explicitly write IPV6_AUTOCONF=no for dhcp on ipv6. - -X-downstream-only: yes - -Resolves: rhbz#1519271 -Signed-off-by: Ryan McCabe ---- - cloudinit/net/sysconfig.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/cloudinit/net/sysconfig.py b/cloudinit/net/sysconfig.py -index e34c8491..bff844cd 100644 ---- a/cloudinit/net/sysconfig.py -+++ b/cloudinit/net/sysconfig.py -@@ -287,7 +287,7 @@ class Renderer(renderer.Renderer): - if subnet_type == 'dhcp6': - iface_cfg['IPV6INIT'] = True - iface_cfg['DHCPV6C'] = True -- iface_cfg['BOOTPROTO'] = 'dhcp' -+ iface_cfg['IPV6_AUTOCONF'] = False - elif subnet_type in ['dhcp4', 'dhcp']: - iface_cfg['BOOTPROTO'] = 'dhcp' - elif subnet_type == 'static': --- -2.14.3 - diff --git a/SOURCES/0037-sysconfig-Fix-traceback.patch b/SOURCES/0037-sysconfig-Fix-traceback.patch deleted file mode 100644 index 433614e..0000000 --- a/SOURCES/0037-sysconfig-Fix-traceback.patch +++ /dev/null @@ -1,30 +0,0 @@ -From a11ca2707b4b1330d3e4c83c6cf37295909bd0fc Mon Sep 17 00:00:00 2001 -From: Ryan McCabe -Date: Mon, 15 Jan 2018 09:23:09 -0500 -Subject: [PATCH] sysconfig: Fix traceback - -Fix a typo that caused a traceback in some situations that was introduced -as part of the fix for rhbz#1489270 - -Signed-off-by: Ryan McCabe -Resolves: rhbz#1489270 ---- - cloudinit/net/sysconfig.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/cloudinit/net/sysconfig.py b/cloudinit/net/sysconfig.py -index bff844cd..3c5d0615 100644 ---- a/cloudinit/net/sysconfig.py -+++ b/cloudinit/net/sysconfig.py -@@ -359,7 +359,7 @@ class Renderer(renderer.Renderer): - iface_cfg['DOMAIN'] = subnet['dns_search'] - - if 'dns_nameservers' in subnet: -- if isinstance(subnet['dns_search'], (list, tuple)): -+ if isinstance(subnet['dns_nameservers'], (list, tuple)): - # Currently limited to 3 entries per resolv.conf(5) - dns_list = subnet['dns_nameservers'][:3] - for i, k in enumerate(dns_list, 1): --- -2.14.3 - diff --git a/SOURCES/0038-Fix-bug-that-resulted-in-an-attempt-to-rename-bonds.patch b/SOURCES/0038-Fix-bug-that-resulted-in-an-attempt-to-rename-bonds.patch deleted file mode 100644 index d79bbc8..0000000 --- a/SOURCES/0038-Fix-bug-that-resulted-in-an-attempt-to-rename-bonds.patch +++ /dev/null @@ -1,252 +0,0 @@ -From 4ada8f2ec17d11835b44ab3d7786e5f3a732df41 Mon Sep 17 00:00:00 2001 -From: Scott Moser -Date: Fri, 31 Mar 2017 10:56:04 -0400 -Subject: [PATCH] Fix bug that resulted in an attempt to rename bonds or vlans. - -When cloud-init ran in the init stage (after networking had come up). -A bug could occur where cloud-init would attempt and fail to rename -network devices that had "inherited" mac addresses. - -The intent of apply_network_config_names was always to rename only -the devices that were "physical" per the network config. (This would -include veth devices in a container). The bug was in creating -the dictionary of interfaces by mac address. If there were multiple -interfaces with the same mac address then renames could fail. -This situation was guaranteed to occur with bonds or vlans or other -devices that inherit their mac. - -The solution is to change get_interfaces_by_mac to skip interfaces -that have an inherited mac. - -Also drop the 'devs' argument to get_interfaces_by_mac. It was -non-obvious what the result should be if a device in the input -list was filtered out. ie should the following have an entry for -bond0 or not. get_interfaces_by_mac(devs=['bond0']) - -LP: #1669860 -(cherry picked from commit bf7723e8092bb1f8a442aa2399dd870e130a27d9) - -Resolves: rhbz#1512247 -Signed-off-by: Ryan McCabe -(cherry picked from commit f9e8f13f916fe740e46c9a0e9dd2dbb3cdb39975) ---- - cloudinit/net/__init__.py | 78 ++++++++++++++++++++++++++++++++++----------- - tests/unittests/test_net.py | 76 +++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 135 insertions(+), 19 deletions(-) - mode change 100755 => 100644 cloudinit/net/__init__.py - -diff --git a/cloudinit/net/__init__.py b/cloudinit/net/__init__.py -old mode 100755 -new mode 100644 -index ea649cc2..ab7e8996 ---- a/cloudinit/net/__init__.py -+++ b/cloudinit/net/__init__.py -@@ -82,6 +82,10 @@ def is_wireless(devname): - return os.path.exists(sys_dev_path(devname, "wireless")) - - -+def is_bridge(devname): -+ return os.path.exists(sys_dev_path(devname, "bridge")) -+ -+ - def is_connected(devname): - # is_connected isn't really as simple as that. 2 is - # 'physically connected'. 3 is 'not connected'. but a wlan interface will -@@ -132,7 +136,7 @@ def generate_fallback_config(): - for interface in potential_interfaces: - if interface.startswith("veth"): - continue -- if os.path.exists(sys_dev_path(interface, "bridge")): -+ if is_bridge(interface): - # skip any bridges - continue - carrier = read_sys_net_int(interface, 'carrier') -@@ -187,7 +191,11 @@ def apply_network_config_names(netcfg, strict_present=True, strict_busy=True): - """read the network config and rename devices accordingly. - if strict_present is false, then do not raise exception if no devices - match. if strict_busy is false, then do not raise exception if the -- device cannot be renamed because it is currently configured.""" -+ device cannot be renamed because it is currently configured. -+ -+ renames are only attempted for interfaces of type 'physical'. It is -+ expected that the network system will create other devices with the -+ correct name in place.""" - renames = [] - for ent in netcfg.get('config', {}): - if ent.get('type') != 'physical': -@@ -201,13 +209,35 @@ def apply_network_config_names(netcfg, strict_present=True, strict_busy=True): - return _rename_interfaces(renames) - - -+def interface_has_own_mac(ifname, strict=False): -+ """return True if the provided interface has its own address. -+ -+ Based on addr_assign_type in /sys. Return true for any interface -+ that does not have a 'stolen' address. Examples of such devices -+ are bonds or vlans that inherit their mac from another device. -+ Possible values are: -+ 0: permanent address 2: stolen from another device -+ 1: randomly generated 3: set using dev_set_mac_address""" -+ -+ assign_type = read_sys_net_int(ifname, "addr_assign_type") -+ if strict and assign_type is None: -+ raise ValueError("%s had no addr_assign_type.") -+ return assign_type in (0, 1, 3) -+ -+ - def _get_current_rename_info(check_downable=True): -- """Collect information necessary for rename_interfaces.""" -- names = get_devicelist() -+ """Collect information necessary for rename_interfaces. -+ -+ returns a dictionary by mac address like: -+ {mac: -+ {'name': name -+ 'up': boolean: is_up(name), -+ 'downable': None or boolean indicating that the -+ device has only automatically assigned ip addrs.}} -+ """ - bymac = {} -- for n in names: -- bymac[get_interface_mac(n)] = { -- 'name': n, 'up': is_up(n), 'downable': None} -+ for mac, name in get_interfaces_by_mac().items(): -+ bymac[mac] = {'name': name, 'up': is_up(name), 'downable': None} - - if check_downable: - nmatch = re.compile(r"[0-9]+:\s+(\w+)[@:]") -@@ -346,22 +376,32 @@ def get_interface_mac(ifname): - return read_sys_net_safe(ifname, path) - - --def get_interfaces_by_mac(devs=None): -- """Build a dictionary of tuples {mac: name}""" -- if devs is None: -- try: -- devs = get_devicelist() -- except OSError as e: -- if e.errno == errno.ENOENT: -- devs = [] -- else: -- raise -+def get_interfaces_by_mac(): -+ """Build a dictionary of tuples {mac: name}. -+ -+ Bridges and any devices that have a 'stolen' mac are excluded.""" -+ try: -+ devs = get_devicelist() -+ except OSError as e: -+ if e.errno == errno.ENOENT: -+ devs = [] -+ else: -+ raise - ret = {} - for name in devs: -+ if not interface_has_own_mac(name): -+ continue -+ if is_bridge(name): -+ continue - mac = get_interface_mac(name) - # some devices may not have a mac (tun0) -- if mac: -- ret[mac] = name -+ if not mac: -+ continue -+ if mac in ret: -+ raise RuntimeError( -+ "duplicate mac found! both '%s' and '%s' have mac '%s'" % -+ (name, ret[mac], mac)) -+ ret[mac] = name - return ret - - # vi: ts=4 expandtab -diff --git a/tests/unittests/test_net.py b/tests/unittests/test_net.py -index 551370d4..cadaf596 100644 ---- a/tests/unittests/test_net.py -+++ b/tests/unittests/test_net.py -@@ -1173,6 +1173,82 @@ class TestEniRoundTrip(TestCase): - expected, [line for line in found if line]) - - -+class TestGetInterfacesByMac(TestCase): -+ _data = {'devices': ['enp0s1', 'enp0s2', 'bond1', 'bridge1', -+ 'bridge1-nic', 'tun0'], -+ 'bonds': ['bond1'], -+ 'bridges': ['bridge1'], -+ 'own_macs': ['enp0s1', 'enp0s2', 'bridge1-nic', 'bridge1'], -+ 'macs': {'enp0s1': 'aa:aa:aa:aa:aa:01', -+ 'enp0s2': 'aa:aa:aa:aa:aa:02', -+ 'bond1': 'aa:aa:aa:aa:aa:01', -+ 'bridge1': 'aa:aa:aa:aa:aa:03', -+ 'bridge1-nic': 'aa:aa:aa:aa:aa:03', -+ 'tun0': None}} -+ data = {} -+ -+ def _se_get_devicelist(self): -+ return self.data['devices'] -+ -+ def _se_get_interface_mac(self, name): -+ return self.data['macs'][name] -+ -+ def _se_is_bridge(self, name): -+ return name in self.data['bridges'] -+ -+ def _se_interface_has_own_mac(self, name): -+ return name in self.data['own_macs'] -+ -+ def _mock_setup(self): -+ self.data = copy.deepcopy(self._data) -+ mocks = ('get_devicelist', 'get_interface_mac', 'is_bridge', -+ 'interface_has_own_mac') -+ self.mocks = {} -+ for n in mocks: -+ m = mock.patch('cloudinit.net.' + n, -+ side_effect=getattr(self, '_se_' + n)) -+ self.addCleanup(m.stop) -+ self.mocks[n] = m.start() -+ -+ def test_raise_exception_on_duplicate_macs(self): -+ self._mock_setup() -+ self.data['macs']['bridge1-nic'] = self.data['macs']['enp0s1'] -+ self.assertRaises(RuntimeError, net.get_interfaces_by_mac) -+ -+ def test_excludes_any_without_mac_address(self): -+ self._mock_setup() -+ ret = net.get_interfaces_by_mac() -+ self.assertIn('tun0', self._se_get_devicelist()) -+ self.assertNotIn('tun0', ret.values()) -+ -+ def test_excludes_stolen_macs(self): -+ self._mock_setup() -+ ret = net.get_interfaces_by_mac() -+ self.mocks['interface_has_own_mac'].assert_has_calls( -+ [mock.call('enp0s1'), mock.call('bond1')], any_order=True) -+ self.assertEqual( -+ {'aa:aa:aa:aa:aa:01': 'enp0s1', 'aa:aa:aa:aa:aa:02': 'enp0s2', -+ 'aa:aa:aa:aa:aa:03': 'bridge1-nic'}, -+ ret) -+ -+ def test_excludes_bridges(self): -+ self._mock_setup() -+ # add a device 'b1', make all return they have their "own mac", -+ # set everything other than 'b1' to be a bridge. -+ # then expect b1 is the only thing left. -+ self.data['macs']['b1'] = 'aa:aa:aa:aa:aa:b1' -+ self.data['devices'].append('b1') -+ self.data['bonds'] = [] -+ self.data['own_macs'] = self.data['devices'] -+ self.data['bridges'] = [f for f in self.data['devices'] if f != "b1"] -+ ret = net.get_interfaces_by_mac() -+ self.assertEqual({'aa:aa:aa:aa:aa:b1': 'b1'}, ret) -+ self.mocks['is_bridge'].assert_has_calls( -+ [mock.call('bridge1'), mock.call('enp0s1'), mock.call('bond1'), -+ mock.call('b1')], -+ any_order=True) -+ -+ - def _gzip_data(data): - with io.BytesIO() as iobuf: - gzfp = gzip.GzipFile(mode="wb", fileobj=iobuf) --- -2.14.3 - diff --git a/SOURCES/0039-azure-Fix-publishing-of-hostname.patch b/SOURCES/0039-azure-Fix-publishing-of-hostname.patch deleted file mode 100644 index f4cb744..0000000 --- a/SOURCES/0039-azure-Fix-publishing-of-hostname.patch +++ /dev/null @@ -1,33 +0,0 @@ -From d3a5f6f36ca673bc69d2e020c65fb85bf0dfc519 Mon Sep 17 00:00:00 2001 -From: Ryan McCabe -Date: Tue, 13 Feb 2018 22:42:17 -0500 -Subject: [PATCH] azure: Fix publishing of hostname - -Set the DHCP_HOSTNAME env var before bouncing the interfaces -to ensure that the hostname is published correctly. - -Resolves: rhbz#1434109 - -X-downstream-only: yes -Signed-off-by: Ryan McCabe ---- - cloudinit/sources/DataSourceAzure.py | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/cloudinit/sources/DataSourceAzure.py b/cloudinit/sources/DataSourceAzure.py -index 48a3e1df..a0ebd2ba 100644 ---- a/cloudinit/sources/DataSourceAzure.py -+++ b/cloudinit/sources/DataSourceAzure.py -@@ -27,7 +27,8 @@ AGENT_START = ['service', 'walinuxagent', 'start'] - AGENT_START_BUILTIN = "__builtin__" - BOUNCE_COMMAND = [ - 'sh', '-xc', -- "i=$interface; x=0; ifdown $i || x=$?; ifup $i || x=$?; exit $x" -+ "i=$interface; DHCP_HOSTNAME=$hostname; x=0; " -+ "ifdown $i || x=$?; ifup $i || x=$?; exit $x" - ] - # azure systems will always have a resource disk, and 66-azure-ephemeral.rules - # ensures that it gets linked to this path. --- -2.14.3 - diff --git a/SOURCES/ci-DataSourceAzure.py-use-hostnamectl-to-set-hostname.patch b/SOURCES/ci-DataSourceAzure.py-use-hostnamectl-to-set-hostname.patch deleted file mode 100644 index 20a99d9..0000000 --- a/SOURCES/ci-DataSourceAzure.py-use-hostnamectl-to-set-hostname.patch +++ /dev/null @@ -1,56 +0,0 @@ -From b1961175270372dd2a3c2801b0c231af3574a857 Mon Sep 17 00:00:00 2001 -From: Vitaly Kuznetsov -Date: Tue, 17 Apr 2018 13:07:54 +0200 -Subject: [PATCH 2/3] DataSourceAzure.py: use hostnamectl to set hostname - -RH-Author: Vitaly Kuznetsov -Message-id: <20180417130754.12918-3-vkuznets@redhat.com> -Patchwork-id: 79659 -O-Subject: [RHEL7.6/7.5.z cloud-init PATCH 2/2] DataSourceAzure.py: use hostnamectl to set hostname -Bugzilla: 1568717 -RH-Acked-by: Eduardo Otubo -RH-Acked-by: Mohammed Gamal -RH-Acked-by: Cathy Avery - -The right way to set hostname in RHEL7 is: - - $ hostnamectl set-hostname HOSTNAME - -DataSourceAzure, however, uses: - $ hostname HOSTSNAME - -instead and this causes problems. We can't simply change -'BUILTIN_DS_CONFIG' in DataSourceAzure.py as 'hostname' is being used -for both getting and setting the hostname. - -Long term, this should be fixed in a different way. Cloud-init -has distro-specific hostname setting/getting (see -cloudinit/distros/rhel.py) and DataSourceAzure.py needs to be switched -to use these. - -Resolves: rhbz#1434109 - -X-downstream-only: yes - -Signed-off-by: Vitaly Kuznetsov -Signed-off-by: Miroslav Rezanina ---- - cloudinit/sources/DataSourceAzure.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/cloudinit/sources/DataSourceAzure.py b/cloudinit/sources/DataSourceAzure.py -index 48a3e1d..6ce700f 100644 ---- a/cloudinit/sources/DataSourceAzure.py -+++ b/cloudinit/sources/DataSourceAzure.py -@@ -71,7 +71,7 @@ def get_hostname(hostname_command='hostname'): - - - def set_hostname(hostname, hostname_command='hostname'): -- util.subp([hostname_command, hostname]) -+ util.subp(['hostnamectl', 'set-hostname', str(hostname)]) - - - @contextlib.contextmanager --- -1.8.3.1 - diff --git a/SOURCES/ci-Revert-azure-Fix-publishing-of-hostname.patch b/SOURCES/ci-Revert-azure-Fix-publishing-of-hostname.patch deleted file mode 100644 index 7df55c1..0000000 --- a/SOURCES/ci-Revert-azure-Fix-publishing-of-hostname.patch +++ /dev/null @@ -1,41 +0,0 @@ -From c5a88b2c987bda11b102de9ef1fca08191672a36 Mon Sep 17 00:00:00 2001 -From: Vitaly Kuznetsov -Date: Tue, 17 Apr 2018 13:07:53 +0200 -Subject: [PATCH 1/3] Revert "azure: Fix publishing of hostname" - -RH-Author: Vitaly Kuznetsov -Message-id: <20180417130754.12918-2-vkuznets@redhat.com> -Patchwork-id: 79658 -O-Subject: [RHEL7.6/7.5.z cloud-init PATCH 1/2] Revert "azure: Fix publishing of hostname" -Bugzilla: 1568717 -RH-Acked-by: Eduardo Otubo -RH-Acked-by: Mohammed Gamal -RH-Acked-by: Cathy Avery - -Turns out the downstream-only fix doesn't work, revert it. - -This reverts commit 7a2f4618ba79ff3f7c4c7d026e645647a3da25d3. - -Signed-off-by: Vitaly Kuznetsov -Signed-off-by: Miroslav Rezanina ---- - cloudinit/sources/DataSourceAzure.py | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -diff --git a/cloudinit/sources/DataSourceAzure.py b/cloudinit/sources/DataSourceAzure.py -index a0ebd2b..48a3e1d 100644 ---- a/cloudinit/sources/DataSourceAzure.py -+++ b/cloudinit/sources/DataSourceAzure.py -@@ -27,8 +27,7 @@ AGENT_START = ['service', 'walinuxagent', 'start'] - AGENT_START_BUILTIN = "__builtin__" - BOUNCE_COMMAND = [ - 'sh', '-xc', -- "i=$interface; DHCP_HOSTNAME=$hostname; x=0; " -- "ifdown $i || x=$?; ifup $i || x=$?; exit $x" -+ "i=$interface; x=0; ifdown $i || x=$?; ifup $i || x=$?; exit $x" - ] - # azure systems will always have a resource disk, and 66-azure-ephemeral.rules - # ensures that it gets linked to this path. --- -1.8.3.1 - diff --git a/SOURCES/ci-sysconfig-Don-t-disable-IPV6_AUTOCONF.patch b/SOURCES/ci-sysconfig-Don-t-disable-IPV6_AUTOCONF.patch deleted file mode 100644 index 0a30b68..0000000 --- a/SOURCES/ci-sysconfig-Don-t-disable-IPV6_AUTOCONF.patch +++ /dev/null @@ -1,49 +0,0 @@ -From 69de56ef080be2d017a84d1fd48ddd1fc7f2124f Mon Sep 17 00:00:00 2001 -From: Vitaly Kuznetsov -Date: Thu, 26 Apr 2018 09:27:49 +0200 -Subject: [PATCH 3/3] sysconfig: Don't disable IPV6_AUTOCONF - -RH-Author: Vitaly Kuznetsov -Message-id: <20180426092749.7251-2-vkuznets@redhat.com> -Patchwork-id: 79904 -O-Subject: [RHEL7.6/7.5.z cloud-init PATCH 1/1] sysconfig: Don't disable IPV6_AUTOCONF -Bugzilla: 1578702 -RH-Acked-by: Mohammed Gamal -RH-Acked-by: Cathy Avery -RH-Acked-by: Eduardo Otubo - -Downstream-only commit 118458a3fb ("sysconfig: Don't write BOOTPROTO=dhcp -for ipv6 dhcp") did two things: -1) Disabled BOOTPROTO='dhcp' for dhcp6 setups. This change seems to be - correct as BOOTPROTO is unrelated to IPv6. The change was since merged - upstream (commit a57928d3c314d9568712cd190cb1e721e14c108b). -2) Explicitly disabled AUTOCONF and this broke many valid configurations - using it instead of DHCPV6C. Revert this part of the change. In case - DHCPV6C-only support is needed something like a new 'dhcpv6c_only' - network type needs to be suggested upstream. - -X-downstream-only: yes - -Resolves: rhbz#1558854 - -Signed-off-by: Vitaly Kuznetsov -Signed-off-by: Miroslav Rezanina ---- - cloudinit/net/sysconfig.py | 1 - - 1 file changed, 1 deletion(-) - -diff --git a/cloudinit/net/sysconfig.py b/cloudinit/net/sysconfig.py -index ec41251..9fd4d92 100644 ---- a/cloudinit/net/sysconfig.py -+++ b/cloudinit/net/sysconfig.py -@@ -287,7 +287,6 @@ class Renderer(renderer.Renderer): - if subnet_type == 'dhcp6': - iface_cfg['IPV6INIT'] = True - iface_cfg['DHCPV6C'] = True -- iface_cfg['IPV6_AUTOCONF'] = False - elif subnet_type in ['dhcp4', 'dhcp']: - iface_cfg['BOOTPROTO'] = 'dhcp' - elif subnet_type == 'static': --- -1.8.3.1 - diff --git a/SOURCES/cloud-init-README.rhel b/SOURCES/cloud-init-README.rhel deleted file mode 100644 index aa29630..0000000 --- a/SOURCES/cloud-init-README.rhel +++ /dev/null @@ -1,5 +0,0 @@ -The following cloud-init modules are currently unsupported on this OS: - - apt_update_upgrade ('apt_update', 'apt_upgrade', 'apt_mirror', 'apt_preserve_sources_list', 'apt_old_mirror', 'apt_sources', 'debconf_selections', 'packages' options) - - byobu ('byobu_by_default' option) - - chef - - grub_dpkg diff --git a/SOURCES/cloud-init-add-centos-os.patch b/SOURCES/cloud-init-add-centos-os.patch deleted file mode 100644 index 977c156..0000000 --- a/SOURCES/cloud-init-add-centos-os.patch +++ /dev/null @@ -1,43 +0,0 @@ -diff --git a/cloudinit/distros/__init__.py b/cloudinit/distros/__init__.py -index f56c0cf..1fd48a7 100755 ---- a/cloudinit/distros/__init__.py -+++ b/cloudinit/distros/__init__.py -@@ -32,7 +32,7 @@ from cloudinit.distros.parsers import hosts - - OSFAMILIES = { - 'debian': ['debian', 'ubuntu'], -- 'redhat': ['fedora', 'rhel'], -+ 'redhat': ['centos', 'fedora', 'rhel'], - 'gentoo': ['gentoo'], - 'freebsd': ['freebsd'], - 'suse': ['sles'], -diff --git a/cloudinit/distros/centos.py b/cloudinit/distros/centos.py -new file mode 100644 -index 0000000..4b803d2 ---- /dev/null -+++ b/cloudinit/distros/centos.py -@@ -0,0 +1,12 @@ -+# This file is part of cloud-init. See LICENSE file for license information. -+ -+from cloudinit.distros import rhel -+from cloudinit import log as logging -+ -+LOG = logging.getLogger(__name__) -+ -+ -+class Distro(rhel.Distro): -+ pass -+ -+# vi: ts=4 expandtab -diff -uNr cloud-init-0.7.9__orig/rhel/cloud.cfg cloud-init-0.7.9/rhel/cloud.cfg ---- cloud-init-0.7.9__orig/rhel/cloud.cfg 2017-09-05 22:20:14.302075947 +0100 -+++ cloud-init-0.7.9/rhel/cloud.cfg 2017-09-05 22:20:37.912076373 +0100 -@@ -52,7 +52,7 @@ - - system_info: - default_user: -- name: cloud-user -+ name: centos - lock_passwd: true - gecos: Cloud User - groups: [wheel, adm, systemd-journal] diff --git a/SOURCES/cloud-init-rhel.cfg b/SOURCES/cloud-init-rhel.cfg deleted file mode 100644 index 675df1c..0000000 --- a/SOURCES/cloud-init-rhel.cfg +++ /dev/null @@ -1,66 +0,0 @@ -users: - - default - -disable_root: 1 -ssh_pwauth: 0 - -mount_default_fields: [~, ~, 'auto', 'defaults,nofail', '0', '2'] -resize_rootfs_tmp: /dev -ssh_deletekeys: 0 -ssh_genkeytypes: ~ -syslog_fix_perms: ~ - -cloud_init_modules: - - migrator - - bootcmd - - write-files - - growpart - - resizefs - - set_hostname - - update_hostname - - update_etc_hosts - - rsyslog - - users-groups - - ssh - -cloud_config_modules: - - mounts - - locale - - set-passwords - - rh_subscription - - yum-add-repo - - package-update-upgrade-install - - timezone - - puppet - - chef - - salt-minion - - mcollective - - disable-ec2-metadata - - runcmd - -cloud_final_modules: - - rightscale_userdata - - scripts-per-once - - scripts-per-boot - - scripts-per-instance - - scripts-user - - ssh-authkey-fingerprints - - keys-to-console - - phone-home - - final-message - -system_info: - default_user: - name: centos - lock_passwd: true - gecos: Cloud User - groups: [wheel, adm, systemd-journal] - sudo: ["ALL=(ALL) NOPASSWD:ALL"] - shell: /bin/bash - distro: rhel - paths: - cloud_dir: /var/lib/cloud - templates_dir: /etc/cloud/templates - ssh_svcname: sshd - -# vim:syntax=yaml diff --git a/SPECS/cloud-init.spec b/SPECS/cloud-init.spec index 390ed96..892c244 100644 --- a/SPECS/cloud-init.spec +++ b/SPECS/cloud-init.spec @@ -6,77 +6,35 @@ %global debug_package %{nil} Name: cloud-init -Version: 0.7.9 -Release: 24%{?dist}.1 +Version: 18.2 +Release: 1%{?dist} Summary: Cloud instance init scripts Group: System Environment/Base License: GPLv3 URL: http://launchpad.net/cloud-init Source0: https://launchpad.net/cloud-init/trunk/%{version}/+download/%{name}-%{version}.tar.gz -Source1: cloud-init-rhel.cfg -Source2: cloud-init-README.rhel -Source3: cloud-init-tmpfiles.conf - -# The following line stops 'rdopkg update-patches' from inserting Patch -# directives in the middle of our Source directives. -# -# patches_base=0.7.9 -Patch0001: 0001-configuration-changes-for-RHEL-package.patch -Patch0002: 0002-do-not-use-git-to-determine-version.patch -Patch0003: 0003-util-teach-write_file-about-copy_mode-option.patch -Patch0004: 0004-Do-not-write-NM_CONTROLLED-no-in-generated-interface.patch -Patch0005: 0005-url_helper-fail-gracefully-if-oauthlib-is-not-availa.patch -Patch0006: 0006-rsyslog-replace-with-stop.patch -Patch0007: 0007-OpenStack-Use-timeout-and-retries-from-config-in-get.patch -Patch0008: 0008-correct-errors-in-cloudinit-net-sysconfig.py.patch -Patch0009: 0009-net-do-not-raise-exception-for-3-nameservers.patch -Patch0010: 0010-net-support-both-ipv4-and-ipv6-gateways-in-sysconfig.patch -Patch0011: 0011-systemd-replace-generator-with-unit-conditionals.patch -Patch0012: 0012-OpenStack-add-dvs-to-the-list-of-physical-link-types.patch -Patch0013: 0013-Bounce-network-interface-for-Azure-when-using-the-bu.patch -Patch0014: 0014-limit-permissions-on-def_log_file.patch -Patch0015: 0015-remove-tee-command-from-logging-configuration.patch -Patch0016: 0016-add-power-state-change-module-to-cloud_final_modules.patch -Patch0017: 0017-sysconfig-Raise-ValueError-when-multiple-default-gat.patch -Patch0018: 0018-Fix-dual-stack-IPv4-IPv6-configuration-for-RHEL.patch -Patch0019: 0019-Add-missing-sysconfig-unit-test-data.patch -Patch0020: 0020-Fix-ipv6-subnet-detection.patch -# Not applied to work around additional issues related to rhbz#1474226 -#Patch0021: 0021-azure-ensure-that-networkmanager-hook-script-runs.patch -Patch0022: 0022-RHEL-CentOS-Fix-default-routes-for-IPv4-IPv6-configu.patch -Patch0023: 0023-DatasourceEc2-add-warning-message-when-not-on-AWS.patch -Patch0024: 0024-Identify-Brightbox-as-an-Ec2-datasource-user.patch -Patch0025: 0025-AliYun-Enable-platform-identification-and-enable-by-.patch -Patch0026: 0026-Fix-alibaba-cloud-unit-tests-to-work-with-0.7.9.patch -Patch0027: 0027-Fix-eni-rendering-of-multiple-IPs-per-interface.patch -Patch0028: 0028-systemd-create-run-cloud-init-enabled.patch -Patch0029: 0029-support-loopback-as-a-device-type.patch -Patch0030: 0030-sysconfig-include-GATEWAY-value-if-set-in-subnet.patch -Patch0031: 0031-rh_subscription-Perform-null-checks-for-enabled-and-.patch -Patch0032: 0032-net-Allow-for-NetworkManager-configuration.patch -Patch0033: 0033-Render-DNS-and-DOMAIN-lines-for-sysconfig.patch -Patch0034: 0034-Start_cloud_init_after_dbus.patch -Patch0035: 0035-sysconfig-Render-IPV6_DEFAULTGW-correctly.patch -Patch0036: 0036-sysconfig-Don-t-write-BOOTPROTO-dhcp-for-ipv6-dhcp.patch -Patch0037: 0037-sysconfig-Fix-traceback.patch -Patch0038: 0038-Fix-bug-that-resulted-in-an-attempt-to-rename-bonds.patch -Patch0039: 0039-azure-Fix-publishing-of-hostname.patch -# For bz#1568717 - Add patch to bounce NICs in Azure/update DNS [rhel-7.5.z] -Patch40: ci-Revert-azure-Fix-publishing-of-hostname.patch -# For bz#1568717 - Add patch to bounce NICs in Azure/update DNS [rhel-7.5.z] -Patch41: ci-DataSourceAzure.py-use-hostnamectl-to-set-hostname.patch -# For bz#1578702 - cloud-init-0.7.9-9.el7_4.6 breaks IPv4/IPv6 dual-stack EC2 instances in AWS [rhel-7.5.z] -Patch42: ci-sysconfig-Don-t-disable-IPV6_AUTOCONF.patch - -Patch9999: cloud-init-add-centos-os.patch +Source1: cloud-init-tmpfiles.conf + +Patch0001: 0001-Add-initial-redhat-setup.patch +Patch0002: 0002-Do-not-write-NM_CONTROLLED-no-in-generated-interface.patch +Patch0003: 0003-limit-permissions-on-def_log_file.patch +Patch0004: 0004-remove-tee-command-from-logging-configuration.patch +Patch0005: 0005-add-power-state-change-module-to-cloud_final_modules.patch +Patch0006: 0006-azure-ensure-that-networkmanager-hook-script-runs.patch +Patch0007: 0007-sysconfig-Don-t-write-BOOTPROTO-dhcp-for-ipv6-dhcp.patch +Patch0008: 0008-DataSourceAzure.py-use-hostnamectl-to-set-hostname.patch +Patch0009: 0009-sysconfig-Don-t-disable-IPV6_AUTOCONF.patch # Deal with noarch -> arch # https://bugzilla.redhat.com/show_bug.cgi?id=1067089 Obsoletes: cloud-init < 0.7.5-3 BuildRequires: python-devel +BuildRequires: python-requests BuildRequires: python-setuptools +BuildRequires: python-six +BuildRequires: python-yaml BuildRequires: systemd-units BuildRequires: git @@ -95,6 +53,7 @@ Requires: python-jsonpatch Requires: python-prettytable Requires: python-requests Requires: python-setuptools +Requires: python-six Requires: PyYAML Requires: pyserial Requires: shadow-utils @@ -110,11 +69,10 @@ ssh keys and to let the user run various scripts. %prep # on el7, autosetup -S git was failing with patches that -# create new files. rpm 4.11.3 and later has -S git_am, but -# el7 only has 4.11.1. +# # create new files. rpm 4.11.3 and later has -S git_am, but +# # el7 only has 4.11.1. %autosetup -p1 -n %{name}-%{version} -S git - %build %{__python} setup.py build @@ -124,7 +82,7 @@ rm -rf $RPM_BUILD_ROOT %{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT # Don't ship the tests -rm -r $RPM_BUILD_ROOT%{python_sitelib}/tests +#rm -r $RPM_BUILD_ROOT%{python_sitelib}/tests mkdir -p $RPM_BUILD_ROOT/var/lib/cloud @@ -219,17 +177,9 @@ fi %config(noreplace) %{_sysconfdir}/rsyslog.d/21-cloudinit.conf %changelog -* Tue Jun 25 2018 Johnny Hughes - 0.7.9-24.el7_5.1 -- Manual CentOS Debranding - -* Thu May 17 2018 Miroslav Rezanina - 0.7.9-24.el7_5.1 -- ci-Revert-azure-Fix-publishing-of-hostname.patch [bz#1568717] -- ci-DataSourceAzure.py-use-hostnamectl-to-set-hostname.patch [bz#1568717] -- ci-sysconfig-Don-t-disable-IPV6_AUTOCONF.patch [bz#1578702] -- Resolves: bz#1568717 - (Add patch to bounce NICs in Azure/update DNS [rhel-7.5.z]) -- Resolves: bz#1578702 - (cloud-init-0.7.9-9.el7_4.6 breaks IPv4/IPv6 dual-stack EC2 instances in AWS [rhel-7.5.z]) +* Thu Jun 21 2018 Miroslav Rezanina +- Rebase to 18.2 + Resolves: rhbz#1525267 * Tue Feb 13 2018 Ryan McCabe 0.7.9-24 - Set DHCP_HOSTNAME on Azure to allow for the hostname to be