~smoser/ubuntu/quantal/cloud-init/sru

« back to all changes in this revision

Viewing changes to cloudinit/handlers/__init__.py

  • Committer: Scott Moser
  • Date: 2012-08-23 05:06:29 UTC
  • mfrom: (1.1.31)
  • Revision ID: smoser@ubuntu.com-20120823050629-jkzdptf45cc88s03
* New upstream snapshot.
  * support creating users on boot. remove requirement for a 'ubuntu'
    user to be previously present in image. (LP: #1028503)
  * add experimental apt_reboot_if_required flag to reboot if necessary
    after upgrade or package install (LP: #1038108)
  * improve mirror selection for a distro: 
    * support arm mirrors (LP: #1028501)
    * support seeding security mirror (LP: #1006963)
    * support dns mirrors including availability-zone reference
      (LP: #1037727)
  * include a "None" datasource so items like ssh host key generation
    occur if there is no other metadata service. (LP: #906669)
  * print authorized_keys for users to the console (LP: #1010582)
  * Add RHEVm and vSphere support as datasource AltCloud [Joseph VLcek]

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
    modfname = os.path.join(pdata['handlerdir'], "%s" % (modname))
134
134
    if not modfname.endswith(".py"):
135
135
        modfname = "%s.py" % (modfname)
136
 
    # TODO: Check if path exists??
 
136
    # TODO(harlowja): Check if path exists??
137
137
    util.write_file(modfname, payload, 0600)
138
138
    handlers = pdata['handlers']
139
139
    try: