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

« back to all changes in this revision

Viewing changes to cloudinit/config/cc_update_hostname.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:
20
20
 
21
21
import os
22
22
 
 
23
from cloudinit.settings import PER_ALWAYS
23
24
from cloudinit import util
24
 
from cloudinit.settings import PER_ALWAYS
25
25
 
26
26
frequency = PER_ALWAYS
27
27