Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-02-04 | more removal of 'ec2init' string, replacement with cloud-init [again] | Scott Moser | |
2010-02-04 | more removal of 'ec2init' string, replacement with cloud-init | Scott Moser | |
2010-01-28 | add the part-handler plugin | Scott Moser | |
If a part of a multipart file is 'text/part-handler' then it is expected to be python code that implements 2 methods - list_types() list the types that this part-handler supports, return a list. ie: return(['text/plain']) - handle_parts(data,ctype,filename,payload) this method will be called: once, when loaded, with ctype == '__begin__' once per part once, at the end, with ctype == '__end__' - ctype is the content type ('text/plain') - filename is the filename portion of the mime data - payload is the content of the part - data is currently the cloud object, but this could change | |||
2010-01-28 | Add support for user defined mount points | Scott Moser | |
Also, move swap to use this format for specifying mounts. That way the user can turn off swap if they want with: | mounts: | - [ swap ] Other change wrapped in here is to have DataSourceEc2 read plain text (evalable) text for its metadata rather than pickl. This is really for debuging anyway, so any speed difference is not important. | |||
2010-01-26 | add doc/userdata.txt, move examples to doc/. | Scott Moser | |