diff options
author | Scott Moser <smoser@ubuntu.com> | 2011-01-27 14:38:22 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2011-01-27 14:38:22 -0500 |
commit | d0da58f89a0bf1841051340d09a0b0b6c5908506 (patch) | |
tree | 86d76361ad358c37e9b33efe1d450b478ec7d2ef | |
parent | ad6655c4528887239bd27bb665617020c3f48525 (diff) | |
download | vyos-cloud-init-d0da58f89a0bf1841051340d09a0b0b6c5908506.tar.gz vyos-cloud-init-d0da58f89a0bf1841051340d09a0b0b6c5908506.zip |
fix the filename of the processed userdata
Change /var/lib/cloud/instance/
user-data-raw.txt.i
to
user-data.txt.i
-rw-r--r-- | cloudinit/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/__init__.py b/cloudinit/__init__.py index cbdf2271..5c83ccc2 100644 --- a/cloudinit/__init__.py +++ b/cloudinit/__init__.py @@ -39,7 +39,7 @@ pathmap = { "sem" : "/sem", "boothooks" : "/boothooks", "userdata_raw" : "/user-data.txt", - "userdata" : "/user-data-raw.txt.i", + "userdata" : "/user-data.txt.i", "obj_pkl" : "/obj.pkl", "cloud_config" : "/cloud-config.txt", "datadir" : "/data", |