Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-02-03 | globally remove ec2init and rename to cloudinit | Scott Moser | |
2010-01-29 | move etc/ec2-init/templates to etc/cloud/templates | Scott Moser | |
2010-01-29 | tighten permissions on cloud-config and user-data to protect it | Scott Moser | |
2010-01-26 | move writing sources.list to CloudConfig. add 'apt_preserve_sources_list' | Scott Moser | |
Move the writing of sources.list to CloudConfig. This way we have access to the cloud-config user data. Then, allow the user to specify the archive mirror using 'apt_mirror' key. Now, if specified in cloud-config, that is used, otherwise, we get one from the DataSource. One other change here is adding 'apt_preserve_sources_list'. If set to true, then overwriting of the sources.list with the selected mirror will not be done. | |||
2010-01-26 | add cloud config support for apt_sources | Scott Moser | |
This includes support for - signing key import via 'keyid' and 'keyserver' or 'key' - ppa:* support (provided by 'add-apt-repository') now there is a dependency on python-software-properties | |||
2010-01-22 | Add support for ssh keys in cloud-config. move write_file to util. | Scott Moser | |
---- #cloud-config apt_update: true ssh_keys: rsa_private: | -----BEGIN RSA PRIVATE KEY----- MIIBxwIBAAJhAKD0YSHy73nUgysO13XsJmd4fHiFyQ+00R7VVu2iV9Qcon2LZS/x ... REPPOyrAspdeOAV+6VKRavstea7+2DZmSUgE -----END RSA PRIVATE KEY----- rsa_public: ssh-rsa AAAAB3NzaC1yc2E...18QJvWPocKJtlsDNi3 smoser@host dsa_private: | -----BEGIN DSA PRIVATE KEY----- MIIBuwIBAAKBgQDP2HLu7pTExL89USyM0264RCyWX/CMLmukxX0Jdbm29ax8FBJT ... 8KucvUYbOEI+yv+5LW9u3z/BAoGBAI0q6JP+JvJmwZFaeCMMVxXUbqiSko/P1lsa -----END DSA PRIVATE KEY----- dsa_public: ssh-dss AAAAB3NzaC1kc3M...ybngIy66PMEoQ= smoser@host ---- | |||
2010-01-22 | fix reading of cloudconfig | Scott Moser | |
2010-01-20 | add util library | Scott Moser | |