Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-08-23 | merge trunk at 0.7.7~bzr1245 | Scott Moser | |
2016-08-23 | Import version 0.7.7~bzr1212-0ubuntu1 | Scott Moser | |
Imported using git-dsc-commit. | |||
2016-08-23 | merge trunk at 0.7.7~bzr1212 | Scott Moser | |
2016-08-23 | Import version 0.7.7~bzr1209-0ubuntu1 | Scott Moser | |
Imported using git-dsc-commit. | |||
2016-08-23 | merge trunk at 0.7.7~bzr1209 | Scott Moser | |
2016-08-23 | Import version 0.7.7~bzr1208-0ubuntu1 | Scott Moser | |
Imported using git-dsc-commit. | |||
2016-08-23 | merge trunk at 0.7.7~bzr1208 | Scott Moser | |
2016-08-23 | Import version 0.7.7~bzr1200-0ubuntu1 | Scott Moser | |
Imported using git-dsc-commit. | |||
2016-08-23 | merge trunk at 0.7.7~bzr1200 | Scott Moser | |
2016-08-23 | Import version 0.7.7~bzr1192-0ubuntu2 | Scott Moser | |
Imported using git-dsc-commit. | |||
2016-08-23 | Import version 0.7.7~bzr1192-0ubuntu1 | Scott Moser | |
Imported using git-dsc-commit. | |||
2016-08-23 | merge trunk at 0.7.7~bzr1192 | Scott Moser | |
2016-08-23 | Import version 0.7.7~bzr1189-0ubuntu1 | Scott Moser | |
Imported using git-dsc-commit. | |||
2016-08-23 | merge trunk at 0.7.7~bzr1189 | Scott Moser | |
2016-08-23 | Import version 0.7.7~bzr1182-0ubuntu1 | Scott Moser | |
Imported using git-dsc-commit. | |||
2016-08-23 | merge trunk at 0.7.7~bzr1182 | Scott Moser | |
2016-08-23 | Import version 0.7.7~bzr1176-0ubuntu1 | Scott Moser | |
Imported using git-dsc-commit. | |||
2016-08-23 | merge trunk at 0.7.7~bzr1176 | Scott Moser | |
2016-08-23 | Import version 0.7.7~bzr1160-0ubuntu1 | Scott Moser | |
Imported using git-dsc-commit. | |||
2016-08-23 | merge trunk at 0.7.7~bzr1160 | Scott Moser | |
2016-08-23 | Import version 0.7.7~bzr1156-0ubuntu2 | Scott Moser | |
Imported using git-dsc-commit. | |||
2016-08-23 | Import version 0.7.7~bzr1156-0ubuntu1 | Scott Moser | |
Imported using git-dsc-commit. | |||
2016-08-23 | merge trunk at 0.7.7~bzr1156 | Scott Moser | |
2016-08-23 | Import version 0.7.7~bzr1155-0ubuntu1 | Scott Moser | |
Imported using git-dsc-commit. | |||
2016-08-23 | merge trunk at 0.7.7~bzr1155 | Scott Moser | |
2016-08-23 | Import version 0.7.7~bzr1154-0ubuntu1 | Scott Moser | |
Imported using git-dsc-commit. | |||
2016-06-22 | user_data: fix error when user-data is not utf-8 decodable | Scott Moser | |
when user-data was not decodable, cloud-init would raise exception. This also changes the signature of user_data.convert_string. The 'headers' argument was never used, and woudl have been broken if it was, as it was expected to be a dictionary but then was passed in with *headers. LP: #1532072 | |||
2016-06-22 | rename test class, add a test, improve test names | Scott Moser | |
2016-06-21 | user_data: fix error when user-data is not utf-8 decodable | Scott Moser | |
when user-data was not decodable, cloud-init would raise exception. LP: #1532072 | |||
2016-06-21 | write_files: if no permissions are given, just use default without warn. | Scott Moser | |
if no permissions were given in a write_files stanza, then a warning would be emitted. The fix here is just to special case handling of None. | |||
2016-06-20 | do not render systemd.link files | Scott Moser | |
When fixing bug 1579130, we made cloud-init rename devices itself, rather than relying on the systemd.link files to do that. That was necessary to - rename devices in a container - rename devices on first boot or in any situation when the link files in the initramfs were stale. However, cloud-init was still writing .link files like: /etc/systemd/network/50-cloud-init-ens2.link That leads to just a confusing situation as cloud-init will trump any renaming systemd does in all cases. Also added here is a header into the rendered ENI file: /etc/network/interfaces.d/50-cloud-init.cfg that describes how to disable cloud-init networking. LP: #1594546 | |||
2016-06-20 | add a header to rendered ENI file describing its content | Scott Moser | |
2016-06-20 | do not render systemd.link files on debian. | Scott Moser | |
These are unnecessary, as cloud-init is renaming the nics that should be renamed itself. | |||
2016-06-20 | leave early if no interfaces to rename | Scott Moser | |
2016-06-15 | support network rendering to sysconfig (for centos and RHEL) | Scott Moser | |
This intends to add support for rendering of network data under sysconfig distributions (centos and rhel). The end result will be support for network configuration via ConfigDrive or NoCloud on these OS. | |||
2016-06-15 | python3 OSError does not have a .message | Scott Moser | |
2016-06-15 | merge with trunk | Scott Moser | |
2016-06-15 | DataSourceNoCloud: fix stack trace on reboot, default to dsmode=net | Scott Moser | |
On reboot (loading module from obj.pkl) we would hit a AttributeError when trying to access cmdline_id. Addtionally, dsmode was inadvertantly defaulting to local for DataSourceNoCloud. LP: #1592505 | |||
2016-06-15 | remove declaration of dsmode as local in DataSourceNoCloud | Scott Moser | |
this would cause the datasource to operate in local mode by default. | |||
2016-06-15 | fix usage of OSError.message that will not work in python3 | Scott Moser | |
python3's OSError does not have a .message attribute. | |||
2016-06-15 | merge from trunk | Scott Moser | |
2016-06-15 | fix some errors reported by pylint | Scott Moser | |
pylint --errors-only found several errors. Some of the changes here represent real errors, others just code that pylint did not like. | |||
2016-06-15 | merge with trunk | Scott Moser | |
2016-06-15 | move 'main' into cloudinit/cmd/ for easier testing | Scott Moser | |
This moves bin/cloud-init's content into cloudinit/cmd/main.py, and then fixes the pep8/flake8 issues with that. The end result is easier testing of main. | |||
2016-06-15 | merge with trunk | Scott Moser | |
2016-06-15 | fis some Datasourcenocloud issues | Scott Moser | |
LP: #1592505 | |||
2016-06-15 | Fix line length issues | Joshua Harlow | |
2016-06-15 | Fixup code review comments | Joshua Harlow | |
2016-06-15 | move 'main' into cloudinit/cmd/ for easier testing | Scott Moser | |
This moves bin/cloud-init's content into cloudinit/cmd/main.py, and then fixes the pep8/flake8 issues with that. The end result is easier testing of main. | |||
2016-06-15 | Remove some unused imports | Joshua Harlow | |