summaryrefslogtreecommitdiff
path: root/cloudinit/CloudConfig
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2011-02-07 14:36:33 -0500
committerScott Moser <smoser@ubuntu.com>2011-02-07 14:36:33 -0500
commit6e5094de9d87bc69970ff813956886c548211f40 (patch)
tree306f775125bf8d602d91899a6b20602fcc1b922a /cloudinit/CloudConfig
parentaf2eb02be2bea26545ce0e2dafe7662b5cc7e337 (diff)
downloadvyos-cloud-init-6e5094de9d87bc69970ff813956886c548211f40.tar.gz
vyos-cloud-init-6e5094de9d87bc69970ff813956886c548211f40.zip
rename 'datadir' key to 'data' in pathmap
Diffstat (limited to 'cloudinit/CloudConfig')
-rw-r--r--cloudinit/CloudConfig/cc_update_hostname.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/CloudConfig/cc_update_hostname.py b/cloudinit/CloudConfig/cc_update_hostname.py
index a49f8649..9ef02251 100644
--- a/cloudinit/CloudConfig/cc_update_hostname.py
+++ b/cloudinit/CloudConfig/cc_update_hostname.py
@@ -29,7 +29,7 @@ def handle(name,cfg,cloud,log,args):
try:
hostname = util.get_cfg_option_str(cfg,"hostname",cloud.get_hostname())
- prev ="%s/%s" % (cloud.get_cpath('datadir'),"previous-hostname")
+ prev ="%s/%s" % (cloud.get_cpath('data'),"previous-hostname")
update_hostname(hostname, prev, log)
except Exception as e:
log.warn("failed to set hostname\n")