Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-03-25 | [packaging] change make-dist-tarball to use the tag given to it | Scott Moser | |
2010-02-18 | fix motd-hook in case of more than 4 fields in BUILD_FILE | Scott Moser | |
if the BUILD_FILE file had more than 4 fields in it, 'serial' would get all additional fields and would then look wrong in the message. protect from that case by adding a var to 'read'. | |||
2010-02-17 | add updates-check support using uec-query-builds | Scott Moser | |
2010-02-04 | more removal of 'ec2init' string, replacement with cloud-init | Scott Moser | |
2010-01-29 | add 'make-dist-tarball' just for making a clean tarfile from a tag | 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 | add doc/userdata.txt, move examples to doc/. | Scott Moser | |
2010-01-26 | improve write-mime-multipart to support 'starts_with' | Scott Moser | |
2010-01-06 | mention where it came from | Scott Moser | |
2010-01-06 | add tools/ directory and 'write-mime-multipart' | Scott Moser | |
write-mime-multipart text/x-shellscript path/filename.sh \ text/x-cloud-config my.yaml \ > my.userdata |