Server IP : 184.154.167.98 / Your IP : 18.220.49.32 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/lib64/python3.6/site-packages/ |
Upload File : |
# # WARNING WARNING WARNING WARNING # # This file is automatically written by generator.py. Any changes # made here will be lost. # # To change the manually written methods edit libvirt-lxc-override.py # To change the automatically written methods edit generator.py # # WARNING WARNING WARNING WARNING # # # WARNING WARNING WARNING WARNING # # Automatically written part of python bindings for libvirt # # WARNING WARNING WARNING WARNING try: import libvirtmod_lxc except ImportError as lib_e: try: import cygvirtmod_lxc as libvirtmod_lxc except ImportError as cyg_e: if "No module named" in str(cyg_e): raise lib_e import libvirt # # Functions from module libvirt-lxc # def lxcEnterCGroup(domain, flags): """This API is LXC specific, so it will only work with hypervisor connections to the LXC driver. Attaches the process to the control cgroups associated with the container @domain. """ ret = libvirtmod_lxc.virDomainLxcEnterCGroup(domain._o, flags) if ret is None: raise libvirt.libvirtError('virDomainLxcEnterCGroup() failed') return ret def lxcOpenNamespace(domain, flags): """This API is LXC specific, so it will only work with hypervisor connections to the LXC driver. Open the namespaces associated with the container @domain and return a list of file descriptors associated with the container. The returned file descriptors are intended to be used with the setns() system call. """ ret = libvirtmod_lxc.virDomainLxcOpenNamespace(domain._o, flags) if ret is None: raise libvirt.libvirtError('virDomainLxcOpenNamespace() failed') return ret