diff options
author | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-08 17:55:23 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-08 17:55:23 -0700 |
commit | 52f6d8473d514a2a1eef86f3ec892d9f873c6da5 (patch) | |
tree | 55b548c9c642f2013e87873b071a6569bfe8163d | |
parent | 14676dd74dbd14ea501bd7ff6875dc5ca54edc4b (diff) | |
download | vyos-cloud-init-52f6d8473d514a2a1eef86f3ec892d9f873c6da5.tar.gz vyos-cloud-init-52f6d8473d514a2a1eef86f3ec892d9f873c6da5.zip |
Renamed this, since its more of settings, not all constants.
-rw-r--r-- | cloudinit/settings.py (renamed from cloudinit/constants.py) | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cloudinit/constants.py b/cloudinit/settings.py index 7bc90f27..830d970d 100644 --- a/cloudinit/constants.py +++ b/cloudinit/settings.py @@ -7,6 +7,7 @@ SEED_DIR = os.path.join(VAR_LIB_DIR, "seed") CFG_ENV_NAME = "CLOUD_CFG" CLOUD_CONFIG = '/etc/cloud/cloud.cfg' +OLD_CLOUD_CONFIG = '/etc/ec2-init/ec2-config.cfg' CFG_BUILTIN = { 'datasource_list': ['NoCloud', @@ -35,3 +36,5 @@ PATH_MAP = { PER_INSTANCE = "once-per-instance" PER_ALWAYS = "always" PER_ONCE = "once" + +TEMPLATE_DIR = '/etc/cloud/templates/' |