forked from pool/cloud-init
Robert Schweikert
c6ec6841cd
+ fix issue mounting 'ephemeral0' if ephemeral0 was an alias for a partitioned block device with target filesystem on ephemeral0.1. (LP: #1236594) + fix DataSourceAzure incompatibility with 2.6 (LP: #1232175) + fix power_state_change config module so that example works. Improve its documentation and add reference to 'timeout' + support apt-add-archive with 'cloud-archive:' format. (LP: #1244355) + Change SmartOS verb for availability zone (LP: #1249124) + documentation fix for boothooks to use 'cloud-init-per' + fix resizefs module by supporting kernels that do not have /proc/PID/mountinfo. (LP: #1248625) [Tim Daly Jr.] + fix 'make rpm' by removing 0.6.4 entry from ChangeLog (LP: #1241834) + fix omnibus chef installer (LP: #1182265) [Chris Wing] + small fix for OVF datasource for iso transport on non-iso9660 filesystem + determine if upstart version is suitable for 'initctl reload-configuration' (LP: #1124384). If so, then invoke it. supports setting up instance-store disk with partition table and filesystem. + add Azure datasource. + add support for SuSE / SLES [Juerg Haefliger] + add a trailing carriage return to chpasswd input, which reportedly caused a problem on rhel5 if missing. + support individual MIME segments to be gzip compressed (LP: #1203203) + always finalize handlers even if processing failed (LP: #1203368) + support merging into cloud-config via jsonp. (LP: #1200476) + add datasource 'SmartOS' for Joyent Cloud. Adds a dependency on serial. + add 'log_time' helper to util for timing how long things take which also reads from uptime. uptime is useful as clock may change during boot due to ntp. + prefer growpart resizer to 'parted resizepart' (LP: #1212492) OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/cloud-init?expand=0&rev=4
19 lines
777 B
Diff
19 lines
777 B
Diff
diff -uNr cloud-init-0.7.4.orig/setup.py cloud-init-0.7.4/setup.py
|
|
--- cloud-init-0.7.4.orig/setup.py 2014-01-04 12:26:55.704357892 -0500
|
|
+++ cloud-init-0.7.4/setup.py 2014-01-04 12:31:24.023166380 -0500
|
|
@@ -39,12 +39,14 @@
|
|
INITSYS_FILES = {
|
|
'sysvinit': [f for f in glob('sysvinit/redhat/*') if is_f(f)],
|
|
'sysvinit_deb': [f for f in glob('sysvinit/debian/*') if is_f(f)],
|
|
+ 'sysvinit_suse': [f for f in glob('sysvinit/suse/*') if is_f(f)],
|
|
'systemd': [f for f in glob('systemd/*') if is_f(f)],
|
|
'upstart': [f for f in glob('upstart/*') if is_f(f)],
|
|
}
|
|
INITSYS_ROOTS = {
|
|
'sysvinit': '/etc/rc.d/init.d',
|
|
'sysvinit_deb': '/etc/init.d',
|
|
+ 'sysvinit_suse': '/etc/init.d',
|
|
'systemd': '/etc/systemd/system/',
|
|
'upstart': '/etc/init/',
|
|
}
|