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: apport.py
# Copyright (C) 2017 Canonical Ltd. # # This file is part of cloud-init. See LICENSE file for license information. '''Cloud-init apport interface''' try: from apport.hookutils import ( attach_file, attach_root_command_outputs, root_command_output) has_apport = True except ImportError: has_apport = False KNOWN_CLOUD_NAMES = [ 'AliYun', 'AltCloud', 'Amazon - Ec2', 'Azure', 'Bigstep', 'Brightbox', 'CloudSigma', 'CloudStack', 'DigitalOcean', 'E24Cloud', 'GCE - Google Compute Engine', 'Exoscale', 'Hetzner Cloud', 'IBM - (aka SoftLayer or BlueMix)', 'LXD', 'MAAS', 'NoCloud', 'OpenNebula', 'OpenStack', 'Oracle', 'OVF', 'RbxCloud - (HyperOne, Rootbox, Rubikon)', 'OpenTelekomCloud', 'Scaleway', 'SmartOS', 'VMware', 'ZStack', 'Other' ] # Potentially clear text collected logs CLOUDINIT_LOG = '/var/log/cloud-init.log' CLOUDINIT_OUTPUT_LOG = '/var/log/cloud-init-output.log' USER_DATA_FILE = '/var/lib/cloud/instance/user-data.txt' # Optional def attach_cloud_init_logs(report, ui=None): '''Attach cloud-init logs and tarfile from 'cloud-init collect-logs'.''' attach_root_command_outputs(report, { 'cloud-init-log-warnings': 'egrep -i "warn|error" /var/log/cloud-init.log', 'cloud-init-output.log.txt': 'cat /var/log/cloud-init-output.log'}) root_command_output( ['cloud-init', 'collect-logs', '-t', '/tmp/cloud-init-logs.tgz']) attach_file(report, '/tmp/cloud-init-logs.tgz', 'logs.tgz') def attach_hwinfo(report, ui=None): '''Optionally attach hardware info from lshw.''' prompt = ( 'Your device details (lshw) may be useful to developers when' ' addressing this bug, but gathering it requires admin privileges.' ' Would you like to include this info?') if ui and ui.yesno(prompt): attach_root_command_outputs(report, {'lshw.txt': 'lshw'}) def attach_cloud_info(report, ui=None): '''Prompt for cloud details if available.''' if ui: prompt = 'Is this machine running in a cloud environment?' response = ui.yesno(prompt) if response is None: raise StopIteration # User cancelled if response: prompt = ('Please select the cloud vendor or environment in which' ' this instance is running') response = ui.choice(prompt, KNOWN_CLOUD_NAMES) if response: report['CloudName'] = KNOWN_CLOUD_NAMES[response[0]] else: report['CloudName'] = 'None' def attach_user_data(report, ui=None): '''Optionally provide user-data if desired.''' if ui: prompt = ( 'Your user-data or cloud-config file can optionally be provided' ' from {0} and could be useful to developers when addressing this' ' bug. Do you wish to attach user-data to this bug?'.format( USER_DATA_FILE)) response = ui.yesno(prompt) if response is None: raise StopIteration # User cancelled if response: attach_file(report, USER_DATA_FILE, 'user_data.txt') def add_bug_tags(report): '''Add any appropriate tags to the bug.''' if 'JournalErrors' in report.keys(): errors = report['JournalErrors'] if 'Breaking ordering cycle' in errors: report['Tags'] = 'systemd-ordering' def add_info(report, ui): '''This is an entry point to run cloud-init's apport functionality. Distros which want apport support will have a cloud-init package-hook at /usr/share/apport/package-hooks/cloud-init.py which defines an add_info function and returns the result of cloudinit.apport.add_info(report, ui). ''' if not has_apport: raise RuntimeError( 'No apport imports discovered. Apport functionality disabled') attach_cloud_init_logs(report, ui) attach_hwinfo(report, ui) attach_cloud_info(report, ui) attach_user_data(report, ui) add_bug_tags(report) return True # vi: ts=4 expandtab
Upload File
Create Folder