diff options
author | Daniel Watkins <oddbloke@ubuntu.com> | 2020-06-22 10:30:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-22 10:30:05 -0400 |
commit | 0755cff078d5931e1d8e151bdcb84afb92bc0f02 (patch) | |
tree | afbc88a9c3bce56b3427b4ca3b0bc5c0f4bc580b /cloudinit/config/cc_final_message.py | |
parent | 609187cf1ffedee8c5d9d61d372c82c03d6442fd (diff) | |
download | vyos-cloud-init-0755cff078d5931e1d8e151bdcb84afb92bc0f02.tar.gz vyos-cloud-init-0755cff078d5931e1d8e151bdcb84afb92bc0f02.zip |
cc_final_message: don't create directories when writing boot-finished (#445)
If the instance symlink doesn't exist, then we shouldn't create a
directory in its place, because that breaks future boots.
LP: #1883903
Diffstat (limited to 'cloudinit/config/cc_final_message.py')
-rw-r--r-- | cloudinit/config/cc_final_message.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/config/cc_final_message.py b/cloudinit/config/cc_final_message.py index fd141541..3441f7a9 100644 --- a/cloudinit/config/cc_final_message.py +++ b/cloudinit/config/cc_final_message.py @@ -78,7 +78,7 @@ def handle(_name, cfg, cloud, log, args): boot_fin_fn = cloud.paths.boot_finished try: contents = "%s - %s - v. %s\n" % (uptime, ts, cver) - util.write_file(boot_fin_fn, contents) + util.write_file(boot_fin_fn, contents, ensure_dir_exists=False) except Exception: util.logexc(log, "Failed to write boot finished file %s", boot_fin_fn) |