Files

21 lines
639 B
Python
Raw Permalink Normal View History

2021-03-18 18:00:23 +00:00
--- cloudinit/settings.py.orig 2021-03-17 15:43:42 UTC
+++ cloudinit/settings.py
@@ -12,7 +12,7 @@
CFG_ENV_NAME = "CLOUD_CFG"
# This is expected to be a yaml formatted file
2022-08-22 10:43:12 -07:00
-CLOUD_CONFIG = "/etc/cloud/cloud.cfg"
+CLOUD_CONFIG = "%%PREFIX%%/etc/cloud/cloud.cfg"
2021-03-18 18:00:23 +00:00
2022-08-22 10:43:12 -07:00
RUN_CLOUD_CONFIG = "/run/cloud-init/cloud.cfg"
2021-03-18 18:00:23 +00:00
@@ -50,7 +50,7 @@ CFG_BUILTIN = {
2022-08-22 10:43:12 -07:00
"system_info": {
"paths": {
"cloud_dir": "/var/lib/cloud",
- "templates_dir": "/etc/cloud/templates/",
+ "templates_dir": "%%PREFIX%%/etc/cloud/templates/",
2021-03-18 18:00:23 +00:00
},
2022-08-22 10:43:12 -07:00
"distro": "ubuntu",
"network": {"renderers": None},