diff options
author | Scott Moser <smoser@ubuntu.com> | 2011-08-03 13:06:55 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2011-08-03 13:06:55 -0400 |
commit | eec6618bea0ab204ce02e8c122e9960ac034595b (patch) | |
tree | d3ddcfa9340a2c2ba1cbb0789f55670914229649 /cloudinit/CloudConfig/cc_set_hostname.py | |
parent | 96edbdc300e6697d7160bccfbb8669c67e57164c (diff) | |
download | vyos-cloud-init-eec6618bea0ab204ce02e8c122e9960ac034595b.tar.gz vyos-cloud-init-eec6618bea0ab204ce02e8c122e9960ac034595b.zip |
add get_hostname_fqdn method to 'util' and use it for getting hostname
This adds a method 'get_hostname_fqdn' to cloudinit.util, and then
uses this method for getting the hostname and fqdn in places that get
hostname.
The single place for getting it right will help.
Diffstat (limited to 'cloudinit/CloudConfig/cc_set_hostname.py')
-rw-r--r-- | cloudinit/CloudConfig/cc_set_hostname.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/CloudConfig/cc_set_hostname.py b/cloudinit/CloudConfig/cc_set_hostname.py index 2b130810..b505b621 100644 --- a/cloudinit/CloudConfig/cc_set_hostname.py +++ b/cloudinit/CloudConfig/cc_set_hostname.py @@ -23,8 +23,8 @@ def handle(name,cfg,cloud,log,args): log.debug("preserve_hostname is set. not setting hostname") return(True) + ( hostname, fqdn ) = util.get_hostname_fqdn(cfg, cloud) try: - hostname = util.get_cfg_option_str(cfg,"hostname",cloud.get_hostname()) set_hostname(hostname, log) except Exception as e: util.logexc(log) |