summaryrefslogtreecommitdiff
path: root/cloudinit/config/cc_scripts_per_instance.py
diff options
context:
space:
mode:
Diffstat (limited to 'cloudinit/config/cc_scripts_per_instance.py')
-rw-r--r--cloudinit/config/cc_scripts_per_instance.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/cloudinit/config/cc_scripts_per_instance.py b/cloudinit/config/cc_scripts_per_instance.py
index baee5cc4..75549b52 100644
--- a/cloudinit/config/cc_scripts_per_instance.py
+++ b/cloudinit/config/cc_scripts_per_instance.py
@@ -15,6 +15,9 @@ Any scripts in the ``scripts/per-instance`` directory on the datasource will
be run when a new instance is first booted. Scripts will be run in alphabetical
order. This module does not accept any config keys.
+Some cloud platforms change instance-id if a significant change was made to
+the system. As a result per-instance scripts will run again.
+
**Internal name:** ``cc_scripts_per_instance``
**Module frequency:** per instance
@@ -40,8 +43,8 @@ def handle(name, _cfg, cloud, log, _args):
try:
util.runparts(runparts_path)
except Exception:
- log.warn("Failed to run module %s (%s in %s)",
- name, SCRIPT_SUBDIR, runparts_path)
+ log.warning("Failed to run module %s (%s in %s)",
+ name, SCRIPT_SUBDIR, runparts_path)
raise
# vi: ts=4 expandtab