summaryrefslogtreecommitdiff
path: root/cloudinit/CloudConfig.py
AgeCommit message (Collapse)Author
2010-03-08rename apt lists files to match newly selected mirror (LP: #513060)Scott Moser
On first boot of an instance, cloud-config replaces /etc/apt/sources.list with references to a local mirror. This will also rename the old list files in /var/lib/apt/lists . LP: #513060
2010-03-04replace 'cloudconfig' entries in fstab rather than appending (LP: #524562)Scott Moser
This marks the comment option of fs_mntops in fstab (man fstab) with cloudconfig for each of the mount options added by cloudconfig. It will search through existing lines, any entry written by cloudconfig will be deleted. LP: #524562
2010-03-04in ebs root instances, ephemeral0 will have a full path.Scott Moser
In instance store I was used to block-device-mapping: {'ami': 'sda1', 'ephemeral0': 'sda2', 'root': '/dev/sda1', 'swap': 'sda3'}, in ebs, image registered with '--block-device-mapping /dev/sda2=ephemeral0', metadata is showing block-device-mapping: {'ami': '/dev/sda1', 'ephemeral0': '/dev/sda2', 'root': '/dev/sda1', 'swap': 'sda3'}, Without this change, 'ephemeral0' would not get translated and would show up in /etc/fstab.
2010-03-04cloudinit/CloudConfig.py: bug fix, 'ephemeral' in cloud-configScott Moser
would not be converted to 'ephemeral0'
2010-03-04cloudinit/CloudConfig.py whitespace changes (remove tabs)Scott Moser
2010-02-24fix format of cron.d/cloudinit-updatesScott Moser
2010-02-19make sure items are strings (not ints)Scott Moser
2010-02-19typo in warningScott Moser
2010-02-19add "runcmd" support in CloudConfigScott Moser
runcmd allows simple running of commands at rc.local like time frame see doc/examples/cloud-config.txt for more info.
2010-02-17add updates-check support using uec-query-buildsScott Moser
2010-02-16Refactor puppet key detection in the configuration as suggested by Scott.Mathias Gug
2010-02-16Add cloud-config-puppet hook.Mathias Gug
2010-02-12fix bug where caused apt update to failScott Moser
2010-02-11rename EC2Init class to CloudInitScott Moser
2010-02-04add copyright informationScott Moser
2010-02-03globally remove ec2init and rename to cloudinitScott Moser