Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-02-03 | globally remove ec2init and rename to cloudinit | 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-26 | in #include type, allow comment lines | Scott Moser | |
2010-01-26 | add 'starts_with' mapping for upstart-job | Scott Moser | |
2010-01-11 | correctly mark content type of simple files | Scott Moser | |
For user data that is not a mime message, we were not applying the starts with rules. In fact, they were not getting applied at all. Other fix here is to have the 'main' function decompress input | |||
2010-01-07 | support getting public ssh keys from ec2 metadata service | Scott Moser | |
2010-01-07 | functional state now in kvm tests | Scott Moser | |
supports user data as mime-multipart and handling types of text/x-shellscript - execute at rc.local text/cloud-config - feed to cloud config text/upstart-job - add to /etc/init as upstart job text/x-include-url - include urls as if they were in-line | |||
2010-01-06 | add UserDataHandler.py, it handles includes and normalizing of userdata | Scott Moser | |