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: temp_utils.py
# This file is part of cloud-init. See LICENSE file for license information. import contextlib import errno import os import shutil import tempfile _TMPDIR = None _ROOT_TMPDIR = "/run/cloud-init/tmp" _EXE_ROOT_TMPDIR = "/var/tmp/cloud-init" def _tempfile_dir_arg(odir=None, needs_exe=False): """Return the proper 'dir' argument for tempfile functions. When root, cloud-init will use /run/cloud-init/tmp to avoid any cleaning that a distro boot might do on /tmp (such as systemd-tmpfiles-clean). If the caller of this function (mkdtemp or mkstemp) was provided with a 'dir' argument, then that is respected. @param odir: original 'dir' arg to 'mkdtemp' or other. @param needs_exe: Boolean specifying whether or not exe permissions are needed for tempdir. This is needed because /run is mounted noexec. """ if odir is not None: return odir if needs_exe: tdir = _EXE_ROOT_TMPDIR if not os.path.isdir(tdir): os.makedirs(tdir) os.chmod(tdir, 0o1777) return tdir global _TMPDIR if _TMPDIR: return _TMPDIR if os.getuid() == 0: tdir = _ROOT_TMPDIR else: tdir = os.environ.get('TMPDIR', '/tmp') if not os.path.isdir(tdir): os.makedirs(tdir) os.chmod(tdir, 0o1777) _TMPDIR = tdir return tdir def ExtendedTemporaryFile(**kwargs): kwargs['dir'] = _tempfile_dir_arg( kwargs.pop('dir', None), kwargs.pop('needs_exe', False)) fh = tempfile.NamedTemporaryFile(**kwargs) # Replace its unlink with a quiet version # that does not raise errors when the # file to unlink has been unlinked elsewhere.. def _unlink_if_exists(path): try: os.unlink(path) except OSError as e: if e.errno != errno.ENOENT: raise e fh.unlink = _unlink_if_exists # Add a new method that will unlink # right 'now' but still lets the exit # method attempt to remove it (which will # not throw due to our del file being quiet # about files that are not there) def unlink_now(): fh.unlink(fh.name) setattr(fh, 'unlink_now', unlink_now) return fh @contextlib.contextmanager def tempdir(rmtree_ignore_errors=False, **kwargs): # This seems like it was only added in python 3.2 # Make it since its useful... # See: http://bugs.python.org/file12970/tempdir.patch tdir = mkdtemp(**kwargs) try: yield tdir finally: shutil.rmtree(tdir, ignore_errors=rmtree_ignore_errors) def mkdtemp(**kwargs): kwargs['dir'] = _tempfile_dir_arg( kwargs.pop('dir', None), kwargs.pop('needs_exe', False)) return tempfile.mkdtemp(**kwargs) def mkstemp(**kwargs): kwargs['dir'] = _tempfile_dir_arg( kwargs.pop('dir', None), kwargs.pop('needs_exe', False)) return tempfile.mkstemp(**kwargs) # vi: ts=4 expandtab
Upload File
Create Folder