Server IP : 80.241.246.6 / Your IP : 216.73.216.129 Web Server : Apache/2.4.25 (Debian) System : Linux kharagauli 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64 User : www-data ( 33) PHP Version : 7.0.33-0+deb9u12 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/local/letsencrypt/letsencrypt-auto-source/pieces/bootstrappers/ |
Upload File : |
# If new packages are installed by BootstrapRpmCommon below, this version # number must be increased. BOOTSTRAP_RPM_COMMON_VERSION=1 BootstrapRpmCommon() { # Tested with: # - Fedora 20, 21, 22, 23 (x64) # - Centos 7 (x64: on DigitalOcean droplet) # - CentOS 7 Minimal install in a Hyper-V VM # - CentOS 6 InitializeRPMCommonBase # Most RPM distros use the "python" or "python-" naming convention. Let's try that first. if $TOOL list python >/dev/null 2>&1; then python_pkgs="$python python-devel python-virtualenv python-tools python-pip " # Fedora 26 starts to use the prefix python2 for python2 based packages. # this elseif is theoretically for any Fedora over version 26: elif $TOOL list python2 >/dev/null 2>&1; then python_pkgs="$python2 python2-libs python2-setuptools python2-devel python2-virtualenv python2-tools python2-pip " # Some distros and older versions of current distros use a "python27" # instead of the "python" or "python-" naming convention. else python_pkgs="$python27 python27-devel python27-virtualenv python27-tools python27-pip " fi BootstrapRpmCommonBase "$python_pkgs" }