|
Server : Apache System : Linux cvar2.toservers.com 3.10.0-962.3.2.lve1.5.73.el7.x86_64 #1 SMP Wed Aug 24 21:31:23 UTC 2022 x86_64 User : njnconst ( 1116) PHP Version : 8.4.18 Disable Function : NONE Directory : /opt/alt-old/python37/lib/python3.7/site-packages/cllimits/cl_utils/ |
Upload File : |
#!/opt/alt/python37/bin/python3 -bb
# -*- coding: utf-8 -*-
# cloudlinux-packages Utility to control lvectl packages
#
# Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2019 All Rights Reserved
#
# Licensed under CLOUD LINUX LICENSE AGREEMENT
# http://cloudlinux.com/docs/LICENSE.TXT
from __future__ import absolute_import
import sys
from clpackages.packages import CloudlinuxPackages
from clcommon.utils import is_root_or_exit
from clcommon.lib.cledition import lve_supported_or_exit
@lve_supported_or_exit
def main(argv):
"""
Main run function
"""
is_root_or_exit()
cll = CloudlinuxPackages()
return cll.run(argv)
if __name__ == "__main__":
sys.exit(main(sys.argv[1:]))