Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python3.6 /
site-packages /
salt /
cache /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2022-10-11 05:09
__init__.py
11.63
KB
-rw-r--r--
2022-05-16 09:16
consul.py
4.92
KB
-rw-r--r--
2022-05-16 09:16
etcd_cache.py
5.96
KB
-rw-r--r--
2022-05-16 09:16
localfs.py
4.75
KB
-rw-r--r--
2022-05-16 09:16
mysql_cache.py
7.71
KB
-rw-r--r--
2022-05-16 09:16
redis_cache.py
17.26
KB
-rw-r--r--
2022-05-16 09:16
Save
Rename
""" Cache data in filesystem. .. versionadded:: 2016.11.0 The ``localfs`` Minion cache module is the default cache module and does not require any configuration. Expiration values can be set in the relevant config file (``/etc/salt/master`` for the master, ``/etc/salt/cloud`` for Salt Cloud, etc). """ import errno import logging import os import os.path import shutil import tempfile import salt.payload import salt.utils.atomicfile import salt.utils.files from salt.exceptions import SaltCacheError log = logging.getLogger(__name__) __func_alias__ = {"list_": "list"} def __cachedir(kwargs=None): if kwargs and "cachedir" in kwargs: return kwargs["cachedir"] return __opts__.get("cachedir", salt.syspaths.CACHE_DIR) def init_kwargs(kwargs): return {"cachedir": __cachedir(kwargs)} def get_storage_id(kwargs): return ("localfs", __cachedir(kwargs)) def store(bank, key, data, cachedir): """ Store information in a file. """ base = os.path.join(cachedir, os.path.normpath(bank)) try: os.makedirs(base) except OSError as exc: if exc.errno != errno.EEXIST: raise SaltCacheError( "The cache directory, {}, could not be created: {}".format(base, exc) ) outfile = os.path.join(base, "{}.p".format(key)) tmpfh, tmpfname = tempfile.mkstemp(dir=base) os.close(tmpfh) try: with salt.utils.files.fopen(tmpfname, "w+b") as fh_: salt.payload.dump(data, fh_) # On Windows, os.rename will fail if the destination file exists. salt.utils.atomicfile.atomic_rename(tmpfname, outfile) except OSError as exc: raise SaltCacheError( "There was an error writing the cache file, {}: {}".format(base, exc) ) def fetch(bank, key, cachedir): """ Fetch information from a file. """ inkey = False key_file = os.path.join(cachedir, os.path.normpath(bank), "{}.p".format(key)) if not os.path.isfile(key_file): # The bank includes the full filename, and the key is inside the file key_file = os.path.join(cachedir, os.path.normpath(bank) + ".p") inkey = True if not os.path.isfile(key_file): log.debug('Cache file "%s" does not exist', key_file) return {} try: with salt.utils.files.fopen(key_file, "rb") as fh_: if inkey: return salt.payload.load(fh_)[key] else: return salt.payload.load(fh_) except OSError as exc: raise SaltCacheError( 'There was an error reading the cache file "{}": {}'.format(key_file, exc) ) def updated(bank, key, cachedir): """ Return the epoch of the mtime for this cache file """ key_file = os.path.join(cachedir, os.path.normpath(bank), "{}.p".format(key)) if not os.path.isfile(key_file): log.warning('Cache file "%s" does not exist', key_file) return None try: return int(os.path.getmtime(key_file)) except OSError as exc: raise SaltCacheError( 'There was an error reading the mtime for "{}": {}'.format(key_file, exc) ) def flush(bank, key=None, cachedir=None): """ Remove the key from the cache bank with all the key content. """ if cachedir is None: cachedir = __cachedir() try: if key is None: target = os.path.join(cachedir, os.path.normpath(bank)) if not os.path.isdir(target): return False shutil.rmtree(target) else: target = os.path.join(cachedir, os.path.normpath(bank), "{}.p".format(key)) if not os.path.isfile(target): return False os.remove(target) except OSError as exc: raise SaltCacheError('There was an error removing "{}": {}'.format(target, exc)) return True def list_(bank, cachedir): """ Return an iterable object containing all entries stored in the specified bank. """ base = os.path.join(cachedir, os.path.normpath(bank)) if not os.path.isdir(base): return [] try: items = os.listdir(base) except OSError as exc: raise SaltCacheError( 'There was an error accessing directory "{}": {}'.format(base, exc) ) ret = [] for item in items: if item.endswith(".p"): ret.append(item.rstrip(item[-2:])) else: ret.append(item) return ret def contains(bank, key, cachedir): """ Checks if the specified bank contains the specified key. """ if key is None: base = os.path.join(cachedir, os.path.normpath(bank)) return os.path.isdir(base) else: keyfile = os.path.join(cachedir, os.path.normpath(bank), "{}.p".format(key)) return os.path.isfile(keyfile)