Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-01-25 | add support for redirecting output of cloud-init, cloud-config and cloud-final | Scott Moser | |
2011-01-24 | make the module list that cloud-config selects specified via cmdline | Scott Moser | |
instead of hard-coding in cloud-init-cfg the module list that should be read, read it from the second command line argument. Basically, instead of reading 'cloud_config_modules', specify 'cloud_config' when cloud-init-cfg is run. change the upstart job to invoke cloud-init-cfg with: exec cloud-init-cfg all cloud_config rather than exec cloud-init-cfg all | |||
2010-07-16 | make cloud-config an upstart task | Scott Moser | |
2010-06-17 | fix cloud-config.conf upstart job | Scott Moser | |
2010-06-17 | make cloud-config modules configurable by cloud-config | Scott Moser | |
The list of cloud-config modules is now kept in cloud config itself. There is a builtin list in cloudinit, which is overrideable by /etc/cloud/cloud.cfg or user data cloud-config. This should make the modules more easily added or removed (as no code needs to be edited now) Basic summary of changes: - move CloudConfig.py -> cloudinit/CloudConfig/__init__.py - split cloud-config modules into their own files named cloudinit/CloudConfig/cc_<name>.py - remove all the upstart/cloud-config-* scripts, replacing them with upstart/cloud-config.conf |