Server IP : 85.214.239.14 / Your IP : 3.145.180.133 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 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_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /usr/share/python3/runtime.d/ |
Upload File : |
#!/bin/sh set -e if [ "$1" = rtupdate ]; then # Transform new default Python runtime name from 'pythonX.Y' to 'pythonXY'. NEW_RTNAME_DOTLESS="$(echo "$3" | tr -d .)" # Versions of Python interpreter which was available at packaging moment # (and for which appropriate python*_plugin.so was built). KNOWN_FLAVORS_DOTLESS="python311" DEFAULT_PLUGIN_ALTERNATIVE_PRIORITY=75 ALT_PLUGIN_ALTERNATIVE_PRIORITY=35 for maybe_new_defaultflavor_dotless in $KNOWN_FLAVORS_DOTLESS; do # Check if pythonX.Y runtime (where pythonX.Y is a new default Python # version) was available at packaging moment. # # If it wasn't available, there is no point in changing default alternative # (as appropriate python*_plugin.so wasn't built and packaged). if [ "$NEW_RTNAME_DOTLESS" = "$maybe_new_defaultflavor_dotless" ] then # Reset prorities of all packaged alternatives of python3_plugin.so # to lower value. for flavor_dotless in $KNOWN_FLAVORS_DOTLESS; do update-alternatives --quiet \ --install \ /usr/lib/uwsgi/plugins/python3_plugin.so \ uwsgi-plugin-python3 \ "/usr/lib/uwsgi/plugins/${flavor_dotless}_plugin.so" \ $ALT_PLUGIN_ALTERNATIVE_PRIORITY \ --slave \ /usr/share/man/man1/uwsgi_python3.1.gz \ uwsgi_python3.1.gz \ "/usr/share/man/man1/uwsgi_${flavor_dotless}.1.gz" done # Set higher priority for pythonXY_plugin.so (where pythonX.Y is a # new default Python version). update-alternatives --quiet \ --install \ /usr/lib/uwsgi/plugins/python3_plugin.so \ uwsgi-plugin-python3 \ "/usr/lib/uwsgi/plugins/${NEW_RTNAME_DOTLESS}_plugin.so" \ $DEFAULT_PLUGIN_ALTERNATIVE_PRIORITY \ --slave \ /usr/share/man/man1/uwsgi_python3.1.gz \ uwsgi_python3.1.gz \ "/usr/share/man/man1/uwsgi_${NEW_RTNAME_DOTLESS}.1.gz" break # for maybe_new_defaultflavor_dotless ... fi done fi