# -*- coding: utf-8 -*- # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2018 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENSE.TXT # import os import errno from subprocess import Popen, PIPE from clcommon.utils import ExternalProgramFailed CAPTAIN_PATH = '/usr/share/python-cllib/cl.captain' def captain(do_try, cmd, stdin=None): try: do_try() except (OSError, IOError) as e: if e.errno == errno.EDQUOT and os.geteuid() > 0: command = [CAPTAIN_PATH] + [str(s) for s in cmd] with Popen( command, stdin=None if stdin is None else PIPE, stdout=PIPE, stderr=PIPE, text=True, ) as proc: if stdin is None: std_out, std_err = proc.communicate() else: std_out, std_err = proc.communicate(stdin) if proc.returncode != 0: raise ExternalProgramFailed( std_err or f'output of "{command}": {std_out}' ) from e else: raise def mkdir(path, mode=0o755, recursive=False): umask = os.umask(0) if recursive: collector = "/" for subdir in path.split("/"): collector = os.path.join(collector, subdir) if os.path.exists(collector): continue captain(lambda: os.mkdir(collector, mode), ['-d', collector, '-m', f'{mode:o}']) else: captain(lambda: os.mkdir(path, mode), ['-d', path, '-m', f'{mode:o}']) os.umask(umask) def write(path, content=''): def do_try(): with open(path, 'w', encoding='utf-8') as fp: fp.write(content) fp.flush() os.fsync(fp.fileno()) captain(do_try, ['-f', path], content) def symlink(src, dst): captain(lambda: os.symlink(src, dst), ['-l', dst, '-s', src])
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
__pycache__ | Folder | 0755 |
|
|
cpapi | Folder | 0755 |
|
|
lib | Folder | 0755 |
|
|
public_hooks | Folder | 0755 |
|
|
__init__.py | File | 1.37 KB | 0644 |
|
clcagefs.py | File | 10.01 KB | 0644 |
|
clcaptain.py | File | 1.96 KB | 0644 |
|
clconfig.py | File | 1.68 KB | 0644 |
|
clconfpars.py | File | 10.13 KB | 0644 |
|
clcustomscript.py | File | 1.16 KB | 0644 |
|
cldebug.py | File | 905 B | 0644 |
|
clemail.py | File | 1.65 KB | 0644 |
|
clexception.py | File | 1.14 KB | 0644 |
|
clfunc.py | File | 6.47 KB | 0644 |
|
clhook.py | File | 3.86 KB | 0644 |
|
cllog.py | File | 1.45 KB | 0644 |
|
cloutput.py | File | 471 B | 0644 |
|
clproc.py | File | 4.05 KB | 0644 |
|
clpwd.py | File | 7.74 KB | 0644 |
|
clquota.py | File | 1.27 KB | 0644 |
|
clsec.py | File | 657 B | 0644 |
|
clwpos_lib.py | File | 15.4 KB | 0644 |
|
const.py | File | 277 B | 0644 |
|
evr_utils.py | File | 3.58 KB | 0644 |
|
features.py | File | 5.04 KB | 0644 |
|
group_info_reader.py | File | 5.29 KB | 0644 |
|
lock.py | File | 1.02 KB | 0644 |
|
mail_helper.py | File | 4.45 KB | 0644 |
|
mysql_lib.py | File | 5.84 KB | 0644 |
|
php_conf_reader.py | File | 9.77 KB | 0644 |
|
sysctl.py | File | 7.61 KB | 0644 |
|
ui_config.py | File | 3.12 KB | 0644 |
|
utils.py | File | 30.28 KB | 0644 |
|
utils_cmd.py | File | 2.71 KB | 0644 |
|