PATH:
usr
/
bin
#!/opt/cloudlinux/venv/bin/python3 -sbb # # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2021 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENCE.TXT # import getopt import os import sys import textwrap import cldetectlib as detect import cllicenselib as cllicense import clsetuplib as clsetup from clcommon.lib.cledition import get_cl_edition_readable, skip_without_lve from clcommon.utils import get_os_version, is_ea4, is_nginx_running # Check for root def check_root(): if os.geteuid() != 0: print("Error: root privileges required. Abort.") sys.exit(-1) # Show help def print_usage() -> None: help_message = """ -h | --help show this message --detect-cp print control panel and its version (CP_NAME, CP_VERSION) --detect-cp-full print control panel, version and panel specific data (CP_NAME, CP_VERSION, ...) Specific data: for ISP Manager5 - Master/Node --detect-cp-nameonly print control panel name (CP_NAME) --get-admin-email print control panel admin email (CP_ADMIN_EMAIL) --cxs-installed check if CXS is installed. Returns 0 if installed, 1 otherwise --cpanel-suphp-enabled check if suPHP is enabled in cPanel. Returns 0 if enabled, 1 otherwise --detect-litespeed check if LiteSpeed is installed. Returns 0 if installed, 1 otherwise --detect-postgresql check if PostGreSQL is installed. Returns 0 if installed, 1 otherwise --detect-ea4 check if EA4 is installed. Only for cPanel --detect-nginx check if nginx is running --print-apache-gid print current apache gid --print-da-admin print DirectAdmin admin user --set-securelinks-gid change sysctl conf if apache gid != 48 (default) --set-nagios do some adjustments to make nagios work correctly if it's installed --setup-supergids do some adjustments to make some software work correctly if it's installed --cl-setup check if CloudLinux is installing. Returns 0 if installing, 1 otherwise --update-license update license --update-new-key update license with new key --check-license check license. Return OK if license is not older than 3 days, error message otherwise --check-license --quiet check license. Exit with code 0 if license is not older than 3 days, 1 otherwise --no-valid-license-screen return 'no valid license found' screen --license-out-of-date-email return the 'license out of date' email --check-openvz return environment ID --detect-edition return edition of CloudLinux --detect-os print OS name and version (OS_NAME,OS_VERSION) --detect-os-nameonly print OS name only (OS_NAME) """ # noqa: E501 # Strip newlines from the start and end # Keep in mind that multi-line indentation is preserved print(help_message.strip("\n")) def update_new_key(key): cllicense.update_license_with_key(key) def check_license(quiet): is_license_valid = cllicense.check_license() if quiet: if is_license_valid: sys.exit(0) else: sys.exit(1) else: print(cllicense.last_license_check(is_license_valid)) sys.exit(0) def main(): try: opts, args = getopt.getopt( sys.argv[1:], "hq", [ "help", "quiet", "detect-cp", "detect-cp-full", "detect-cp-nameonly", "cxs-installed", "cpanel-suphp-enabled", "get-admin-email", "print-apache-gid", "detect-litespeed", "detect-postgresql", "set-securelinks-gid", "print-da-admin", "cl-setup", "set-nagios", "update-license", "update-new-key", "check-license", "no-valid-license-screen", "license-out-of-date-email", "check-openvz", "detect-ea4", "detect-nginx", "setup-supergids", "detect-edition", "detect-os", "detect-os-nameonly", ], ) except getopt.GetoptError: print("error: unknown command") print_usage() sys.exit(1) executed = False quiet = False for option, _argument in opts: if option in ("--quiet", "-q"): quiet = True break skipped_without_lve_checks = ("--set-securelinks-gid", "--set-nagios", "--setup-supergids") for option, _argument in opts: if option in skipped_without_lve_checks: skip_without_lve() if option in ("--help", "-h"): executed = True check_root() print_usage() elif option in ("--cxs-installed",): executed = True check_root() if detect.CXS_check(): sys.exit(0) else: sys.exit(1) elif option in ("--detect-cp",): executed = True check_root() detect.getCP() print(str(detect.CP_NAME) + "," + str(detect.CP_VERSION)) elif option in ("--detect-cp-full",): executed = True check_root() detect.getCP() cp_name = str(detect.CP_NAME) cp_version = str(detect.CP_VERSION) if detect.CP_ISP_TYPE: # Panel additional info present print(f"{cp_name},{cp_version},{detect.CP_ISP_TYPE}") else: # No panel additional info present print(f"{cp_name},{cp_version}") elif option in ("--detect-cp-nameonly",): executed = True check_root() detect.getCPName() print(str(detect.CP_NAME)) elif option in ("--get-admin-email",): executed = True check_root() print(detect.getCPAdminEmail()) elif option in ("--cpanel-suphp-enabled",): executed = True check_root() if detect.mod_suPHP_check(): sys.exit(0) else: sys.exit(1) elif option in ("--detect-litespeed",): executed = True check_root() if detect.detect_litespeed(): sys.exit(0) else: sys.exit(1) elif option in ("--detect-postgresql",): executed = True check_root() if detect.detect_postgresql(): sys.exit(0) else: sys.exit(1) elif option in ("--print-apache-gid",): executed = True check_root() if detect.get_apache_gid(): print(detect.APACHE_GID) else: print("error: unknown control panel") elif option in ("--set-securelinks-gid",): executed = True check_root() if detect.get_apache_gid(): clsetup.set_securelinks_gid(detect.APACHE_GID) # Actually, this command could be removed because it's a sub-set of # --setup-supergids, but I left it here only for backward compatibility elif option in ("--set-nagios",): executed = True check_root() clsetup.setup_nagios() elif option in ("--setup-supergids",): executed = True check_root() clsetup.setup_supergids() elif option in ("--print-da-admin",): executed = True check_root() admin = detect.detect_DA_admin() if admin: print(admin) else: print("Error: can not find admin user for DirectAdmin") elif option in ("--cl-setup",): executed = True check_root() if detect.check_CL_installing(): sys.exit(0) else: sys.exit(1) elif option in ("--update-license",): executed = True check_root() cllicense.update_license_timestamp_file() elif option in ("--update-new-key",): executed = True check_root() try: update_new_key(args[0].strip()) except: print("Error: key required.") sys.exit(1) elif option in ("--check-license",): executed = True check_license(quiet) elif option in ("--no-valid-license-screen",): executed = True check_root() print(cllicense.get_novalid_template()) elif option in ("--license-out-of-date-email",): executed = True check_root() print(cllicense.get_email_template()) elif option in ("--check-openvz",): executed = True result = detect.is_openvz() sys.stdout.write(str(result)) elif option in ("--detect-ea4",): executed = True if is_ea4(): print("EA4 detected") else: print("No EA4 detected") elif option in ("--detect-nginx",): executed = True if is_nginx_running(): print("Nginx is running") else: print("Nginx is not running") elif option in ("--detect-edition",): executed = True print(get_cl_edition_readable()) elif option in ("--detect-os",): executed = True os_name, os_ver = get_os_version() print(os_name, os_ver) elif option in ("--detect-os-nameonly",): executed = True os_name, _ = get_os_version() print(os_name) if not executed: print("error: argument required") print_usage() sys.exit(1) if __name__ == "__main__": main()
[+]
..
[-] lessecho
[edit]
[-] lesskey
[edit]
[-] zgrep
[edit]
[-] false
[edit]
[-] ps2pdf14
[edit]
[-] ionice
[edit]
[-] enchant-lsmod
[edit]
[-] fmt
[edit]
[-] vimtutor
[edit]
[-] getopt
[edit]
[-] flock
[edit]
[-] expr
[edit]
[-] date
[edit]
[-] mariadb-check
[edit]
[-] as
[edit]
[-] slabtop
[edit]
[-] pod2text
[edit]
[-] join
[edit]
[-] sha384sum
[edit]
[-] precat
[edit]
[-] pgrep
[edit]
[-] mariadb-tzinfo-to-sql
[edit]
[-] objdump
[edit]
[-] logname
[edit]
[-] addr2line
[edit]
[-] bzcat
[edit]
[-] chmod
[edit]
[-] hunspell
[edit]
[-] dropuser
[edit]
[-] sh
[edit]
[-] xsubpp
[edit]
[-] ruby
[edit]
[-] vi
[edit]
[-] ex
[edit]
[-] ssh-keyscan
[edit]
[-] pg_dump
[edit]
[-] compare
[edit]
[-] bunzip2
[edit]
[-] dir
[edit]
[-] mariadb
[edit]
[-] flex++
[edit]
[-] pmap
[edit]
[-] bzdiff
[edit]
[-] nroff
[edit]
[-] crontab
[edit]
[-] ssh-keygen
[edit]
[-] csplit
[edit]
[-] utmpdump
[edit]
[-] pip3
[edit]
[-] zforce
[edit]
[-] troff
[edit]
[-] crontab.cagefs
[edit]
[-] c++
[edit]
[-] autoupdate
[edit]
[-] mysqlcheck
[edit]
[-] gcov-tool
[edit]
[-] openssl
[edit]
[-] dig
[edit]
[-] cpan
[edit]
[-] mariadb-dump
[edit]
[-] lesspipe.sh
[edit]
[-] gcc-nm
[edit]
[-] b2sum
[edit]
[-] easy_install-3
[edit]
[-] mariadb-binlog
[edit]
[-] mysql_find_rows
[edit]
[-] automake-1.16
[edit]
[-] pdf2dsc
[edit]
[-] x86_64-redhat-linux-gcc-8
[edit]
[-] xxd
[edit]
[-] top
[edit]
[-] mariadb-plugin
[edit]
[-] toe
[edit]
[-] c89
[edit]
[-] wget
[edit]
[-] arpaname
[edit]
[-] mariadb-dumpslow
[edit]
[-] sha224sum
[edit]
[-] nslookup
[edit]
[-] x86_64-redhat-linux-c++
[edit]
[-] tzselect
[edit]
[-] ld.bfd
[edit]
[-] stream
[edit]
[-] prezip
[edit]
[-] gpgv
[edit]
[-] composite
[edit]
[-] basename
[edit]
[-] pathchk
[edit]
[-] soelim
[edit]
[-] python2
[edit]
[-] preunzip
[edit]
[-] git-shell
[edit]
[-] ps2pdf13
[edit]
[-] pango-list
[edit]
[-] mariadb-waitpid
[edit]
[-] gcov
[edit]
[-] getent
[edit]
[-] ghostscript
[edit]
[-] sha1sum
[edit]
[-] ps2pdfwr
[edit]
[-] zegrep
[edit]
[-] infotocap
[edit]
[-] sync
[edit]
[-] post-grohtml
[edit]
[-] test
[edit]
[-] tclsh
[edit]
[-] cal
[edit]
[-] unlink
[edit]
[-] mysqlaccess
[edit]
[-] traceroute
[edit]
[-] autoreconf
[edit]
[-] colcrt
[edit]
[-] zsoelim
[edit]
[-] ar
[edit]
[-] tty
[edit]
[-] enchant
[edit]
[-] which
[edit]
[-] msql2mysql
[edit]
[-] strace
[edit]
[-] mkfifo
[edit]
[-] h2xs
[edit]
[-] mariadb-find-rows
[edit]
[-] pkill
[edit]
[-] autoconf
[edit]
[-] vmstat
[edit]
[-] zmore
[edit]
[-] renew-dummy-cert
[edit]
[-] stdbuf
[edit]
[-] setterm
[edit]
[-] mcdiff
[edit]
[-] selectorctl
[edit]
[-] tic
[edit]
[-] scl
[edit]
[-] rename
[edit]
[-] idn
[edit]
[-] sha256sum
[edit]
[-] more
[edit]
[-] unzipsfx
[edit]
[-] mysqladmin
[edit]
[-] users
[edit]
[-] gpgsplit
[edit]
[-] g++
[edit]
[-] printenv
[edit]
[-] tee
[edit]
[-] gtbl
[edit]
[-] pre-grohtml
[edit]
[-] conjure
[edit]
[-] gpg-error
[edit]
[-] truncate
[edit]
[-] fc-validate
[edit]
[-] fgrep
[edit]
[-] ssh
[edit]
[-] bashbug-64
[edit]
[-] pkgconf
[edit]
[-] fold
[edit]
[-] fc-conflist
[edit]
[-] x86_64-redhat-linux-gcc
[edit]
[-] gawk
[edit]
[-] setsid
[edit]
[-] delv
[edit]
[-] comm
[edit]
[-] isosize
[edit]
[-] at
[edit]
[-] gunzip
[edit]
[-] mysql
[edit]
[-] rev
[edit]
[-] login
[edit]
[-] link
[edit]
[-] znew
[edit]
[-] gcc-ar
[edit]
[-] git
[edit]
[-] ifnames
[edit]
[-] ssh-copy-id
[edit]
[-] bzip2recover
[edit]
[-] tload
[edit]
[-] mysql_config
[edit]
[-] fc-query
[edit]
[-] dnstap-read
[edit]
[-] pydoc3
[edit]
[-] echo
[edit]
[-] install
[edit]
[-] python3.6
[edit]
[-] pkg-config
[edit]
[-] mariadb-hotcopy
[edit]
[-] pyvenv-3
[edit]
[-] fc-cache-64
[edit]
[-] mail
[edit]
[-] gencat
[edit]
[-] expand
[edit]
[-] clusterdb
[edit]
[-] geoiplookup6
[edit]
[-] timeout
[edit]
[-] dropdb
[edit]
[-] grotty
[edit]
[-] perlivp
[edit]
[-] file
[edit]
[-] montage
[edit]
[-] mariadb-conv
[edit]
[-] zipcloak
[edit]
[-] gcc
[edit]
[-] ipcs
[edit]
[-] bison
[edit]
[-] dircolors
[edit]
[-] env
[edit]
[-] yes
[edit]
[-] geoiplookup
[edit]
[-] python3
[edit]
[-] sftp
[edit]
[-] nsupdate
[edit]
[-] base64
[edit]
[-] cat
[edit]
[-] mktemp
[edit]
[-] vim
[edit]
[-] replace
[edit]
[-] run-with-aspell
[edit]
[-] less
[edit]
[-] uniq
[edit]
[-] mc
[edit]
[-] zipgrep
[edit]
[-] tail
[edit]
[-] arch
[edit]
[-] zip
[edit]
[-] pwd
[edit]
[-] pg_dumpall
[edit]
[-] convert
[edit]
[-] mariadb-convert-table-format
[edit]
[-] pod2html
[edit]
[-] rvi
[edit]
[-] atq
[edit]
[-] catchsegv
[edit]
[-] vimdiff
[edit]
[-] split
[edit]
[-] spell
[edit]
[-] aclocal-1.16
[edit]
[-] animate
[edit]
[-] autoheader
[edit]
[-] rm
[edit]
[-] zcmp
[edit]
[-] mariadb-show
[edit]
[-] gem
[edit]
[-] diff
[edit]
[-] scl_enabled
[edit]
[-] tclsh8.6
[edit]
[-] vacuumdb
[edit]
[-] fc-list
[edit]
[-] python3.6m
[edit]
[-] bzcmp
[edit]
[-] xsltproc
[edit]
[-] bash
[edit]
[-] sdiff
[edit]
[-] script
[edit]
[-] perl
[edit]
[-] strip
[edit]
[-] fc-match
[edit]
[-] wc
[edit]
[-] tbl
[edit]
[-] rview
[edit]
[-] ssh-add
[edit]
[-] view
[edit]
[-] infocmp
[edit]
[-] bzip2
[edit]
[-] zless
[edit]
[-] unexpand
[edit]
[-] perlml
[edit]
[-] namei
[edit]
[-] kill
[edit]
[-] eps2eps
[edit]
[-] recode
[edit]
[-] nohup
[edit]
[-] readelf
[edit]
[-] realpath
[edit]
[-] who
[edit]
[-] pic
[edit]
[-] identify
[edit]
[-] zfgrep
[edit]
[-] gsnd
[edit]
[-] rnano
[edit]
[-] c99
[edit]
[-] cmp
[edit]
[-] hostid
[edit]
[-] sqlite3
[edit]
[-] numfmt
[edit]
[-] mcookie
[edit]
[-] mariadb-embedded
[edit]
[-] passwd
[edit]
[-] mysqldump
[edit]
[-] gsoelim
[edit]
[-] mysql_waitpid
[edit]
[-] nproc
[edit]
[-] gpic
[edit]
[-] id
[edit]
[-] c++filt
[edit]
[-] chgrp
[edit]
[-] free
[edit]
[-] groff
[edit]
[-] gpg-zip
[edit]
[-] objcopy
[edit]
[-] watch
[edit]
[-] shuf
[edit]
[-] git-receive-pack
[edit]
[-] sort
[edit]
[-] gprof
[edit]
[-] pinentry-curses
[edit]
[-] autoscan
[edit]
[-] captoinfo
[edit]
[-] ssh-agent
[edit]
[-] createdb
[edit]
[-] look
[edit]
[-] zipnote
[edit]
[-] tset
[edit]
[-] head
[edit]
[-] automake
[edit]
[-] stat
[edit]
[-] find
[edit]
[-] perlthanks
[edit]
[-] nl
[edit]
[-] gzip
[edit]
[-] podchecker
[edit]
[-] batch
[edit]
[-] bzless
[edit]
[-] ls
[edit]
[-] du
[edit]
[-] col
[edit]
[-] nm
[edit]
[-] gs
[edit]
[-] xmlcatalog
[edit]
[-] sha512sum
[edit]
[-] whereis
[edit]
[-] pango-view
[edit]
[-] ps2ps2
[edit]
[-] hostname
[edit]
[-] zipsplit
[edit]
[-] mesg
[edit]
[-] fc-scan
[edit]
[-] pinentry
[edit]
[-] cc
[edit]
[-] lynx
[edit]
[-] gneqn
[edit]
[-] mariadb-setpermission
[edit]
[-] mysqlimport
[edit]
[-] skill
[edit]
[-] unzip
[edit]
[-] sum
[edit]
[-] fc-cache
[edit]
[-] true
[edit]
[-] ipcrm
[edit]
[-] pl2pm
[edit]
[-] touch
[edit]
[-] vdir
[edit]
[-] fc-pattern
[edit]
[-] xargs
[edit]
[-] lex
[edit]
[-] diff3
[edit]
[-] ptx
[edit]
[-] python2.7
[edit]
[-] git-upload-archive
[edit]
[-] seq
[edit]
[-] cut
[edit]
[-] cagefs_enter.proxied
[edit]
[-] xmlwf
[edit]
[-] ps2pdf12
[edit]
[-] pinky
[edit]
[-] localedef
[edit]
[-] mariadb-slap
[edit]
[-] flex
[edit]
[-] mcview
[edit]
[-] instmodsh
[edit]
[-] mysqlbinlog
[edit]
[-] md5sum
[edit]
[-] dd
[edit]
[-] screen
[edit]
[-] zipinfo
[edit]
[-] grep
[edit]
[-] pwdx
[edit]
[-] nice
[edit]
[-] patch
[edit]
[-] printf
[edit]
[-] autom4te
[edit]
[-] getconf
[edit]
[-] egrep
[edit]
[-] [
[edit]
[-] mv
[edit]
[-] mcedit
[edit]
[-] ps
[edit]
[-] clear
[edit]
[-] mysqlshow
[edit]
[-] zdiff
[edit]
[-] tar
[edit]
[-] ping
[edit]
[-] curl
[edit]
[-] column
[edit]
[-] mariadb-import
[edit]
[-] libtoolize
[edit]
[-] ld
[edit]
[-] cldetect
[edit]
[-] xmllint
[edit]
[-] funzip
[edit]
[-] dirname
[edit]
[-] GET
[edit]
[-] make
[edit]
[-] ps2ps
[edit]
[-] eqn
[edit]
[-] fc-cat
[edit]
[-] tac
[edit]
[-] uptime
[edit]
[-] 7za
[edit]
[-] base32
[edit]
[-] rmdir
[edit]
[-] scalar
[edit]
[-] zcat
[edit]
[-] sleep
[edit]
[-] pod2man
[edit]
[-] taskset
[edit]
[-] readlink
[edit]
[-] unversioned-python
[edit]
[-] podselect
[edit]
[-] mogrify
[edit]
[-] gtar
[edit]
[-] mailx
[edit]
[-] pydoc-3
[edit]
[-] size
[edit]
[-] mkdir
[edit]
[-] mariadb-secure-installation
[edit]
[-] gpg-agent
[edit]
[-] snice
[edit]
[-] geqn
[edit]
[-] pod2usage
[edit]
[-] tsort
[edit]
[-] tabs
[edit]
[-] uapi
[edit]
[-] sprof
[edit]
[-] ps2ascii
[edit]
[-] logger
[edit]
[-] shred
[edit]
[-] gpg
[edit]
[-] freetype-config
[edit]
[-] reindexdb
[edit]
[-] createuser
[edit]
[-] libnetcfg
[edit]
[-] aclocal
[edit]
[-] splain
[edit]
[-] rvim
[edit]
[-] renice
[edit]
[-] paste
[edit]
[-] my_print_defaults
[edit]
[-] ps2epsi
[edit]
[-] gzexe
[edit]
[-] prezip-bin
[edit]
[-] h2ph
[edit]
[-] display
[edit]
[-] hexdump
[edit]
[-] git-upload-pack
[edit]
[-] reset
[edit]
[-] nano
[edit]
[-] tr
[edit]
[-] ps2pdf
[edit]
[-] x86_64-redhat-linux-g++
[edit]
[-] ispell
[edit]
[-] enc2xs
[edit]
[-] scl_source
[edit]
[-] gcov-dump
[edit]
[-] df
[edit]
[-] pg_restore
[edit]
[-] gmake
[edit]
[-] atrm
[edit]
[-] gnroff
[edit]
[-] make-dummy-cert
[edit]
[-] perldoc
[edit]
[-] neqn
[edit]
[-] perlbug
[edit]
[-] piconv
[edit]
[-] iconv
[edit]
[-] ln
[edit]
[-] chrt
[edit]
[-] Mail
[edit]
[-] bzgrep
[edit]
[-] ul
[edit]
[-] grops
[edit]
[-] perl5.26.3
[edit]
[-] libtool
[edit]
[-] stty
[edit]
[-] cpp
[edit]
[-] gcc-ranlib
[edit]
[-] psql
[edit]
[-] import
[edit]
[-] gm
[edit]
[-] groups
[edit]
[-] bzmore
[edit]
[-] mytop
[edit]
[-] mariadb-access
[edit]
[-] chown
[edit]
[-] strings
[edit]
[-] aspell
[edit]
[-] ranlib
[edit]
[-] prove
[edit]
[-] cp
[edit]
[-] pip-3
[edit]
[-] tput
[edit]
[-] cksum
[edit]
[-] pr
[edit]
[-] scp
[edit]
[-] php
[edit]
[-] pdf2ps
[edit]
[-] locale
[edit]
[-] host
[edit]
[-] awk
[edit]
[-] tmpwatch
[edit]
[-] sed
[edit]
[-] uname
[edit]
[-] colrm
[edit]
[-] m4
[edit]
[-] whoami
[edit]
[-] word-list-compress
[edit]
[-] ldd
[edit]
[-] mariadb-admin
[edit]
[-] rsync
[edit]
[-] factor
[edit]
[-] gtroff
[edit]
[-] od
[edit]