/snap/core22/2411/usr/lib/python3/dist-packages/cloudinit
NameSizeModeActions
analyze/-0755rm
cmd/-0755rm
config/-0755rm
distros/-0755rm
filters/-0755rm
handlers/-0755rm
log/-0755rm
mergers/-0755rm
net/-0755rm
reporting/-0755rm
sources/-0755rm
__pycache__/-0755rm
apport.py84960644editdlrm
atomic_helper.py28600644editdlrm
cloud.py32960644editdlrm
dmi.py80020644editdlrm
event.py20510644editdlrm
features.py57630644editdlrm
gpg.py81860644editdlrm
helpers.py165470644editdlrm
importer.py24850644editdlrm
lifecycle.py79790644editdlrm
netinfo.py246460644editdlrm
performance.py31750644editdlrm
persistence.py25830644editdlrm
registry.py10220644editdlrm
safeyaml.py103490644editdlrm
settings.py21720644editdlrm
signal_handler.py30270644editdlrm
simpletable.py19760644editdlrm
socket.py59910644editdlrm
ssh_util.py229830644editdlrm
stages.py425260644editdlrm
subp.py126580644editdlrm
templater.py79300644editdlrm
temp_utils.py30130644editdlrm
type_utils.py7030644editdlrm
url_helper.py391640644editdlrm
user_data.py147840644editdlrm
util.py929070644editdlrm
version.py5640644editdlrm
warnings.py38530644editdlrm
__init__.py00644editdlrm
Edit: /snap/core22/2411/usr/lib/python3/dist-packages/cloudinit/settings.py (2172B)
# Copyright (C) 2012 Canonical Ltd. # Copyright (C) 2012 Hewlett-Packard Development Company, L.P. # Copyright (C) 2012 Yahoo! Inc. # # Author: Scott Moser # Author: Juerg Haefliger # Author: Joshua Harlow # # This file is part of cloud-init. See LICENSE file for license information. # Set and read for determining the cloud config file location CFG_ENV_NAME = "CLOUD_CFG" # This is expected to be a yaml formatted file CLOUD_CONFIG = "/etc/cloud/cloud.cfg" CLEAN_RUNPARTS_DIR = "/etc/cloud/clean.d" DEFAULT_RUN_DIR = "/run/cloud-init" # What u get if no config is provided CFG_BUILTIN = { "datasource_list": [ "NoCloud", "ConfigDrive", "LXD", "OpenNebula", "DigitalOcean", "Azure", "AltCloud", "VMware", "OVF", "MAAS", "GCE", "OpenStack", "AliYun", "Vultr", "Ec2", "CloudSigma", "CloudStack", "SmartOS", "Bigstep", "Scaleway", "Hetzner", "IBMCloud", "Oracle", "Exoscale", "RbxCloud", "UpCloud", "NWCS", "Akamai", "WSL", "CloudCIX", # At the end to act as a 'catch' when none of the above work... "None", ], "def_log_file": "/var/log/cloud-init.log", "log_cfgs": [], "syslog_fix_perms": ["syslog:adm", "root:adm", "root:wheel", "root:root"], "system_info": { "paths": { "cloud_dir": "/var/lib/cloud", "docs_dir": "/usr/share/doc/cloud-init/", "templates_dir": "/etc/cloud/templates/", }, "distro": "ubuntu", "network": {"renderers": None}, }, "vendor_data": {"enabled": True, "prefix": []}, "vendor_data2": {"enabled": True, "prefix": []}, } # Valid frequencies of handlers/modules PER_INSTANCE = "once-per-instance" PER_ALWAYS = "always" PER_ONCE = "once" # Used to sanity check incoming handlers/modules frequencies FREQUENCIES = [PER_INSTANCE, PER_ALWAYS, PER_ONCE] HOTPLUG_ENABLED_FILE = "/var/lib/cloud/hotplug.enabled"