X7ROOT File Manager
Current Path:
/usr/lib/python2.7/site-packages/cloudinit
usr
/
lib
/
python2.7
/
site-packages
/
cloudinit
/
📁
..
📄
__init__.py
(0 B)
📄
__init__.pyc
(141 B)
📄
__init__.pyo
(141 B)
📁
analyze
📄
apport.py
(4.04 KB)
📄
apport.pyc
(4.36 KB)
📄
apport.pyo
(4.36 KB)
📄
atomic_helper.py
(1.32 KB)
📄
atomic_helper.pyc
(1.52 KB)
📄
atomic_helper.pyo
(1.52 KB)
📄
cloud.py
(3.15 KB)
📄
cloud.pyc
(3.95 KB)
📄
cloud.pyo
(3.95 KB)
📁
cmd
📁
config
📄
cs_utils.py
(3 KB)
📄
cs_utils.pyc
(4.36 KB)
📄
cs_utils.pyo
(4.36 KB)
📄
dhclient_hook.py
(2.48 KB)
📄
dhclient_hook.pyc
(3.21 KB)
📄
dhclient_hook.pyo
(3.21 KB)
📁
distros
📄
ec2_utils.py
(8.75 KB)
📄
ec2_utils.pyc
(7.04 KB)
📄
ec2_utils.pyo
(7.04 KB)
📄
event.py
(450 B)
📄
event.pyc
(507 B)
📄
event.pyo
(507 B)
📁
filters
📄
gpg.py
(3.31 KB)
📄
gpg.pyc
(3.35 KB)
📄
gpg.pyo
(3.35 KB)
📁
handlers
📄
helpers.py
(14.72 KB)
📄
helpers.pyc
(16.7 KB)
📄
helpers.pyo
(16.7 KB)
📄
importer.py
(1.38 KB)
📄
importer.pyc
(1.12 KB)
📄
importer.pyo
(1.12 KB)
📄
log.py
(4.44 KB)
📄
log.pyc
(3.85 KB)
📄
log.pyo
(3.85 KB)
📁
mergers
📁
net
📄
netinfo.py
(15.94 KB)
📄
netinfo.pyc
(12.19 KB)
📄
netinfo.pyo
(12.19 KB)
📄
patcher.py
(1.23 KB)
📄
patcher.pyc
(1.49 KB)
📄
patcher.pyo
(1.49 KB)
📄
registry.py
(1.01 KB)
📄
registry.pyc
(1.76 KB)
📄
registry.pyo
(1.76 KB)
📁
reporting
📄
safeyaml.py
(1.19 KB)
📄
safeyaml.pyc
(1.82 KB)
📄
safeyaml.pyo
(1.82 KB)
📄
serial.py
(1.19 KB)
📄
serial.pyc
(1.81 KB)
📄
serial.pyo
(1.81 KB)
📄
settings.py
(1.93 KB)
📄
settings.pyc
(1.43 KB)
📄
settings.pyo
(1.43 KB)
📄
signal_handler.py
(1.8 KB)
📄
signal_handler.pyc
(2.29 KB)
📄
signal_handler.pyo
(2.29 KB)
📄
simpletable.py
(1.85 KB)
📄
simpletable.pyc
(2.63 KB)
📄
simpletable.pyo
(2.63 KB)
📁
sources
📄
ssh_util.py
(12.5 KB)
📄
ssh_util.pyc
(12.46 KB)
📄
ssh_util.pyo
(12.46 KB)
📄
stages.py
(36.91 KB)
📄
stages.pyc
(28.99 KB)
📄
stages.pyo
(28.99 KB)
📄
subp.py
(1.96 KB)
📄
subp.pyc
(1.78 KB)
📄
subp.pyo
(1.78 KB)
📄
temp_utils.py
(2.87 KB)
📄
temp_utils.pyc
(3.12 KB)
📄
temp_utils.pyo
(3.12 KB)
📄
templater.py
(6.61 KB)
📄
templater.pyc
(6.32 KB)
📄
templater.pyo
(6.32 KB)
📄
type_utils.py
(945 B)
📄
type_utils.pyc
(729 B)
📄
type_utils.pyo
(729 B)
📄
url_helper.py
(21.87 KB)
📄
url_helper.pyc
(20.33 KB)
📄
url_helper.pyo
(20.33 KB)
📄
user_data.py
(13.5 KB)
📄
user_data.pyc
(10.07 KB)
📄
user_data.pyo
(10.07 KB)
📄
util.py
(89.02 KB)
📄
util.pyc
(81.22 KB)
📄
util.pyo
(81.22 KB)
📄
version.py
(585 B)
📄
version.pyc
(555 B)
📄
version.pyo
(555 B)
📄
warnings.py
(3.83 KB)
📄
warnings.pyc
(3.91 KB)
📄
warnings.pyo
(3.91 KB)
Editing: warnings.py
# This file is part of cloud-init. See LICENSE file for license information. from cloudinit import helpers from cloudinit import log as logging from cloudinit import util import os import time LOG = logging.getLogger() WARNINGS = { 'non_ec2_md': """ This system is using the EC2 Metadata Service, but does not appear to be running on Amazon EC2 or one of cloud-init's known platforms that provide a EC2 Metadata service. In the future, cloud-init may stop reading metadata from the EC2 Metadata Service unless the platform can be identified. If you are seeing this message, please file a bug against cloud-init at https://bugs.launchpad.net/cloud-init/+filebug?field.tags=dsid Make sure to include the cloud provider your instance is running on. For more information see https://bugs.launchpad.net/bugs/1660385 After you have filed a bug, you can disable this warning by launching your instance with the cloud-config below, or putting that content into /etc/cloud/cloud.cfg.d/99-ec2-datasource.cfg #cloud-config datasource: Ec2: strict_id: false""", 'dsid_missing_source': """ A new feature in cloud-init identified possible datasources for this system as: {dslist} However, the datasource used was: {source} In the future, cloud-init will only attempt to use datasources that are identified or specifically configured. For more information see https://bugs.launchpad.net/bugs/1669675 If you are seeing this message, please file a bug against cloud-init at https://bugs.launchpad.net/cloud-init/+filebug?field.tags=dsid Make sure to include the cloud provider your instance is running on. After you have filed a bug, you can disable this warning by launching your instance with the cloud-config below, or putting that content into /etc/cloud/cloud.cfg.d/99-warnings.cfg #cloud-config warnings: dsid_missing_source: off""", } def _get_warn_dir(cfg): paths = helpers.Paths( path_cfgs=cfg.get('system_info', {}).get('paths', {})) return paths.get_ipath_cur('warnings') def _load_warn_cfg(cfg, name, mode=True, sleep=None): # parse cfg['warnings']['name'] returning boolean, sleep # expected value is form of: # (on|off|true|false|sleep)[,sleeptime] # boolean True == on, False == off default = (mode, sleep) if not cfg or not isinstance(cfg, dict): return default ncfg = util.get_cfg_by_path(cfg, ('warnings', name)) if ncfg is None: return default if ncfg in ("on", "true", True): return True, None if ncfg in ("off", "false", False): return False, None mode, _, csleep = ncfg.partition(",") if mode != "sleep": return default if csleep: try: sleep = int(csleep) except ValueError: return default return True, sleep def show_warning(name, cfg=None, sleep=None, mode=True, **kwargs): # kwargs are used for .format of the message. # sleep and mode are default values used if # cfg['warnings']['name'] is not present. if cfg is None: cfg = {} mode, sleep = _load_warn_cfg(cfg, name, mode=mode, sleep=sleep) if not mode: return msg = WARNINGS[name].format(**kwargs) msgwidth = 70 linewidth = msgwidth + 4 fmt = "# %%-%ds #" % msgwidth topline = "*" * linewidth + "\n" fmtlines = [] for line in msg.strip("\n").splitlines(): fmtlines.append(fmt % line) closeline = topline if sleep: sleepmsg = " [sleeping for %d seconds] " % sleep closeline = sleepmsg.center(linewidth, "*") + "\n" util.write_file( os.path.join(_get_warn_dir(cfg), name), topline + "\n".join(fmtlines) + "\n" + topline) LOG.warning("%s%s\n%s", topline, "\n".join(fmtlines), closeline) if sleep: LOG.debug("sleeping %d seconds for warning '%s'", sleep, name) time.sleep(sleep) # vi: ts=4 expandtab
Upload File
Create Folder