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: cloud.py
# Copyright (C) 2012 Canonical Ltd. # Copyright (C) 2012 Hewlett-Packard Development Company, L.P. # Copyright (C) 2012 Yahoo! Inc. # # This file is part of cloud-init. See LICENSE file for license information. import copy import os from cloudinit import log as logging from cloudinit.reporting import events LOG = logging.getLogger(__name__) # This class is the high level wrapper that provides # access to cloud-init objects without exposing the stage objects # to handler and or module manipulation. It allows for cloud # init to restrict what those types of user facing code may see # and or adjust (which helps avoid code messing with each other) # # It also provides util functions that avoid having to know # how to get a certain member from this submembers as well # as providing a backwards compatible object that can be maintained # while the stages/other objects can be worked on independently... class Cloud(object): def __init__(self, datasource, paths, cfg, distro, runners, reporter=None): self.datasource = datasource self.paths = paths self.distro = distro self._cfg = cfg self._runners = runners if reporter is None: reporter = events.ReportEventStack( name="unnamed-cloud-reporter", description="unnamed-cloud-reporter", reporting_enabled=False) self.reporter = reporter # If a 'user' manipulates logging or logging services # it is typically useful to cause the logging to be # setup again. def cycle_logging(self): logging.resetLogging() logging.setupLogging(self.cfg) @property def cfg(self): # Ensure that cfg is not indirectly modified return copy.deepcopy(self._cfg) def run(self, name, functor, args, freq=None, clear_on_fail=False): return self._runners.run(name, functor, args, freq, clear_on_fail) def get_template_filename(self, name): fn = self.paths.template_tpl % (name) if not os.path.isfile(fn): LOG.warning("No template found in %s for template named %s", os.path.dirname(fn), name) return None return fn # The rest of these are just useful proxies def get_userdata(self, apply_filter=True): return self.datasource.get_userdata(apply_filter) def get_instance_id(self): return self.datasource.get_instance_id() @property def launch_index(self): return self.datasource.launch_index def get_public_ssh_keys(self): return self.datasource.get_public_ssh_keys() def get_locale(self): return self.datasource.get_locale() def get_hostname(self, fqdn=False, metadata_only=False): return self.datasource.get_hostname( fqdn=fqdn, metadata_only=metadata_only) def device_name_to_device(self, name): return self.datasource.device_name_to_device(name) def get_ipath_cur(self, name=None): return self.paths.get_ipath_cur(name) def get_cpath(self, name=None): return self.paths.get_cpath(name) def get_ipath(self, name=None): return self.paths.get_ipath(name) # vi: ts=4 expandtab
Upload File
Create Folder