2
- fix bug where update was not done unless update was explicitly set.
3
It would not be run if 'upgrade' or packages were set to be installed
4
- fix bug in part-handler code, that prevented working part-handlers
6
- fix bug in resizefs cloud-config that would cause trace based on
7
failure of 'blkid /dev/root' (LP: #726938)
8
- convert dos formated files to unix for user-scripts, boothooks,
9
and upstart jobs (LP: #744965)
10
- fix bug in seeding of grub dpkg configuration (LP: #752361) due
11
to renamed devices in newer (natty) kernels (/dev/sda1 -> /dev/xvda1)
12
- make metadata urls configurable, to support eucalyptus in
13
STATIC or SYSTEM modes (LP: #761847)
14
- support disabling byobu in cloud-config
15
- run cc_ssh as a cloud-init module so it is guaranteed to run before
16
ssh starts (LP: #781101)
17
- make prefix for keys added to /root/.ssh/authorized_keys configurable
18
and add 'no-port-forwarding,no-agent-forwarding,no-X11-forwarding'
19
to the default (LP: #798505)
20
- make 'cloud-config ready' command configurable (LP: #785551)
21
- make fstab fields used to 'fill in' shorthand entries configurable
22
This means you do not have to have 'nobootwait' in the values
24
- read /etc/ssh/sshd_config for AuthorizedKeysFile rather than
25
assuming ~/.ssh/authorized_keys (LP: #731849)
26
- fix cloud-init in ubuntu lxc containers (LP: #800824)
27
- sanitize hosts file for system's hostname to 127.0.1.1 (LP: #802637)
29
- fix bug in fixing permission on /var/log/cloud-init.log (LP: #704509)
30
- improve comment strings in rsyslog file tools/21-cloudinit.conf
31
- add previous-instance-id and previous-datasource files to datadir
32
- add 'datasource' file to instance dir
33
- add setting of passwords and enabling/disabling of PasswordAuthentication
34
for sshd. By default no changes are done to sshd.
35
- fix for puppet configuration options (LP: #709946) [Ryan Lane]
36
- fix pickling of DataSource, which broke seeding.
37
- turn resize_rootfs default to True
38
- avoid mounts in DataSourceOVF if 'read' on device fails
39
'mount /dev/sr0' for an empty virtual cdrom device was taking 18 seconds
40
- add 'manual_cache_clean' option to select manual cleaning of
41
the /var/lib/cloud/instance/ link, for a data source that might
42
not be present on every boot
43
- make DataSourceEc2 retries and timeout configurable
44
- add helper routines for apt-get update and install
45
- add 'bootcmd' like 'runcmd' to cloud-config syntax for running things early
46
- move from '#opt_include' in config file format to conf_d.
47
ie, now files in /etc/cloud.cfg.d/ is read rather than reading
48
'#opt_include <filename>' or '#include <filename>' in cloud.cfg
49
- allow /etc/hosts to be written from hosts.tmpl. which allows
50
getting local-hostname into /etc/hosts (LP: #720440)
51
- better handle startup if there is no eth0 (LP: #714807)
52
- update rather than append in puppet config [Marc Cluet]
53
- add cloud-config for mcollective [Marc Cluet]
55
- change permissions of /var/log/cloud-init.log to accomodate
56
syslog writing to it (LP: #704509)
57
- rework of /var/lib/cloud layout
58
- remove updates-check (LP: #653220)
59
- support resizing / on first boot (enabled by default)
60
- added support for running CloudConfig modules at cloud-init time
61
rather than cloud-config time, and the new 'cloud_init_modules'
62
entry in cloud.cfg to indicate which should run then.
63
The driving force behind this was to have the rsyslog module
64
able to run before rsyslog even runs so that a restart would
65
not be needed (rsyslog on ubuntu runs on 'filesystem')
66
- moved setting and updating of hostname to cloud_init_modules
67
this allows the user to easily disable these from running.
69
- the semaphore name for 'set_hostname' and 'update_hostname'
70
changes to 'config_set_hostname' and 'config_update_hostname'
71
- added cloud-config option 'hostname' for setting hostname
72
- moved upstart/cloud-run-user-script.conf to upstart/cloud-final.conf
73
- cloud-final.conf now runs runs cloud-config modules similar
74
to cloud-config and cloud-init.
76
- added writing of "boot-finished" to /var/lib/cloud/instance/boot-finished
77
this is the last thing done, indicating cloud-init is finished booting
78
- writes message to console with timestamp and uptime
79
- write ssh keys to console as one of the last things done
80
this is to ensure they don't get run off the 'get-console-ouptut' buffer
81
- user_scripts run via cloud-final and thus semaphore renamed from
82
user_scripts to config_user_scripts
83
- add support for redirecting output of cloud-init, cloud-config, cloud-final
84
via the config file, or user data config file
85
- add support for posting data about the instance to a url (phone_home)
86
- add minimal OVF transport (iso) support
87
- make DataSources that are attempted dynamic and configurable from
88
system config. changen "cloud_type: auto" as configuration for this
89
to 'datasource_list: [ "Ec2" ]'. Each of the items in that list
90
must be modules that can be loaded by "DataSource<item>"
91
- add 'timezone' option to cloud-config (LP: #645458)
92
- Added an additional archive format, that can be used for multi-part
93
input to cloud-init. This may be more user friendly then mime-multipart
94
See example in doc/examples/cloud-config-archive.txt (LP: #641504)
95
- add support for reading Rightscale style user data (LP: #668400)
96
and acting on it in cloud-config (cc_rightscale_userdata.py)
97
- make the message on 'disable_root' more clear (LP: #672417)
98
- do not require public key if private is given in ssh cloud-config