Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-07-20 | Also handle custom handlers correctly. | Joshua Harlow | |
LP: #1203368 | |||
2013-07-11 | upstart_job.py: fix pylint and bad bad variable in _has_suitable_upstart | Scott Moser | |
2013-07-09 | handlers/upstart_job.py: invoke reload-configuration if we can. | Scott Moser | |
Previously we'd not invoked reload-configuration because doing so caused issues with upstart. Now, instead, determine if we can invoke it. LP: #1124384 | |||
2013-06-19 | fix and cleanup usage of util.logexc | Juerg Haefliger | |
2013-05-09 | Adjust comment on why we are merging cloud config the way we are. | Joshua Harlow | |
2013-05-09 | Fix the cloud config merging so that it is backwards compat. | Joshua Harlow | |
The new change for merging works well in the mergedict case but the default merging type for cloud config needs to reflect how yaml was loaded in bulk, which is the same as the replacing keys merging type that is now provided. | |||
2013-04-22 | Continue working on merging. | Joshua Harlow | |
2013-04-17 | Altering the order of merging. | Joshua Harlow | |
2013-03-07 | more pep8/pylint. all clean now | Scott Moser | |
2013-03-07 | merge from trunk | Scott Moser | |
2013-03-06 | Continue working on merging code. | Joshua Harlow | |
2013-03-05 | Add in a bunch of changes and tests. | Joshua Harlow | |
2013-02-27 | do not reload upstart configuration on upstart jobs | Scott Moser | |
For now, we disable reloading upstart jobs due to bug 1124384. At some point in the future, we could enable it again when that bug is fixed. The change here allows for a boothook in a multipart input to write the file '/run/cloud-init-upstart-reload' and then have configuration reloaded. | |||
2012-12-19 | cloudinit/handlers/upstart_job.py: pep8 / trailing whitespace | Scott Moser | |
2012-12-17 | tell upstart to reload configuration after writing an upstart job | Scott Moser | |
Invoking 'initctl reload-configuration' is only required if inotify does not work. overlayroot does not support inotify. So, we just call initctl always, which wont hurt anything. LP: #1080841 | |||
2012-11-22 | Allow mergers to take options. | Joshua Harlow | |
2012-11-22 | Add which files the yaml blob came from. | Joshua Harlow | |
2012-11-22 | Adjust naming and exception catching. | Joshua Harlow | |
2012-11-22 | Change the yaml merge header extraction to be in a sep. function that can ↵ | Joshua Harlow | |
look in more places. | |||
2012-11-22 | Continue work. | Joshua Harlow | |
2012-11-22 | Select merge-type from either header or content after loading as yaml. | Joshua Harlow | |
2012-11-22 | Continue working on merging prototype. | Joshua Harlow | |
2012-11-20 | Start allowing different merging types to be applied | Joshua Harlow | |
After user data handling splits apart all the different content types into there various mime messages it is nice to be able to have each message specify how it should be merged (mainly for cloud-config or cloud-archive) into the single cloud config that is eventually used. This starts to add a plugable merging framework and the needed components to activate said headers and merging. | |||
2012-11-06 | Do the append after escape. | Joshua Harlow | |
2012-11-06 | Use a method instead + at least | Joshua Harlow | |
attempt the unicode-escape path. | |||
2012-11-06 | Fix the case where a unknown type is seen and | Joshua Harlow | |
it has contents which are in unicode which seems to cause python to blow-up when this happens since 'string-escape' doesn't work on unicode (at least in 2.6). LP: #1075756 | |||
2012-08-22 | fix pep8 complaints. | Scott Moser | |
make pep8 now is silent on precise's pep8 ( 0.6.1-2ubuntu2). | |||
2012-07-12 | walker_callback: fix traceback on empty payload. | Scott Moser | |
A previous commit of mine here tried to apply a trivial fix to avoid a warning on empty content type. Instead, it made the empty content type call a handler which did not exist. This instead logs warning on unknown non-empty payload. It logs debug on empty payload. | |||
2012-06-29 | Ensure that only when incoming frequency is per-instance that this runs. | Joshua Harlow | |
2012-06-29 | [merge-from-trunk] remove warning message to console on empty user-data | Scott Moser | |
2012-06-21 | 1. Only register and increment the handler count after we have ensured it ↵ | Joshua Harlow | |
imports and call_begin passes. 2. Fixup the 'test__init__.py' file to now be working again. | |||
2012-06-21 | Remove a unused import. | Joshua Harlow | |
2012-06-20 | 1. Add an importer function that will search for a given module in a set of ↵ | Joshua Harlow | |
search module 'prefixes' that also has a potential set of required attributes. 2. Use this new importer to find the distro class, the userdata handler modules, the config modules and the datasource modules, if none can be found error out accordingly. | |||
2012-06-20 | Massive pylint + pep8 fixups! | Joshua Harlow | |
2012-06-17 | Log handler + info that is about to be called | Joshua Harlow | |
2012-06-16 | 1. Allow for checking against lower case include types. | Joshua Harlow | |
2. Perform lstrip on the payload, just incase people put spaces/whitespace before the type. | |||
2012-06-16 | Update error messaging for when importing/registring a part-handler fails | Joshua Harlow | |
2012-06-16 | 1. Ensure a that when a bad version is found, that it gets set to 1. | Joshua Harlow | |
2. Increment part handler count even if it doesn't get registered (this shouldn't cause any problems) | |||
2012-06-16 | Check instance id against none, and not just empty/false/0/none since 0 or ↵ | Joshua Harlow | |
empty might be valid | |||
2012-06-16 | Pass in the datasource as a option, instead of the lower level instance id. | Joshua Harlow | |
This allows for others to use datasource functions if they desire to instead of being restricted. +1 for future use ;) | |||
2012-06-16 | When a handler version is set but to an unknown non-int convertable value, ↵ | Joshua Harlow | |
treat it as 1 | |||
2012-06-16 | They are handlers not mods ;) | Joshua Harlow | |
2012-06-16 | Make the top level __init__ similar to the other top level __inits__ where ↵ | Joshua Harlow | |
just util functions and base classes are defined there. | |||
2012-06-15 | Fixups to ensure that pylint does not find anything major wrong. | Joshua Harlow | |
2012-06-15 | Ensure that this directory is treated as a module. | Joshua Harlow | |
2012-06-15 | Moved the user_data directory back to a user_data.py and made a handler ↵ | Joshua Harlow | |
subdir for just the internal handlers. | |||
2012-06-15 | Moved the handlers from a user_data directory to a handler directory. | Joshua Harlow | |
2012-06-11 | Removing distro specifics from here, as well as running functionality (which ↵ | Joshua Harlow | |
is now elsewhere). | |||
2012-06-08 | Move how handler module names are found to here as well as a fixup module ↵ | Joshua Harlow | |
function for bad modules. | |||
2012-06-08 | Remove cloud config from here and move to cloud.py | Joshua Harlow | |