forked from pool/cloud-init
Robert Schweikert
8e9fedcf49
+ added cloud-init-net-eni.patch based on work by eblock - Using config-drive instead of metadata failed because the network translation to Ubuntu-style did not return gateway information to opensuse.py + added cloud-init-service.patch based on work by eblock - The service file cloud-init.service referenced networking.service which on SUSE is network.service + remove no_logic_change.patch included in updated upstream source + forward port suseIntegratedHandler.patch + forward port setupSUSEsysVInit.diff + forward port cloud-init-no-dmidecode-on-ppc64.patch + foward port dataSourceOpenNebula.patch + forward port fix-default-systemd-unit-dir.patch + forward port cloud-init-finalbeforelogin.patch + forward port cloud-init-python2-sigpipe.patch + SmartOS: more improvements for network configuration + add ntp config module [Ryan Harper] + ChangeLog: update changelog for previous commit. + Add distro tags on config modules that should have it. + NoCloud: fix bug providing network-interfaces via meta-data. (LP: 1577982) + ConfigDrive: recognize 'tap' as a link type. (LP: #1610784) + Upgrade to a configobj package new enough to work + MAAS: add vendor-data support (LP: #1612313) + DigitalOcean: use the v1.json endpoint [Ben Howard] + Get Azure endpoint server from DHCP client [Brent Baude] + Apt: add new apt configuration format [Christian Ehrhardt] + distros: fix get_primary_arch method use of os.uname [Andrew Jorgensen] + Fix Gentoo net config generation [Matthew Thode] + Minor cleanups to atomic_helper and add unit tests. OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/cloud-init?expand=0&rev=43
19 lines
958 B
Diff
19 lines
958 B
Diff
--- setup.py.orig
|
|
+++ setup.py
|
|
@@ -75,6 +75,7 @@ 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)],
|
|
+ 'sysvinit_suse': [f for f in glob('sysvinit/suse/*') 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)],
|
|
@@ -85,6 +86,7 @@ INITSYS_ROOTS = {
|
|
'sysvinit_freebsd': '/usr/local/etc/rc.d',
|
|
'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'),
|