%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11585/root/var/lib/dpkg/info/ |
Upload File : |
#!/bin/sh set -e # Regenerate initramfs whenever we go to dpkg state `installed' if [ "x$1" != xtriggered ]; then # this activates the trigger, if triggers are working update-initramfs -u else # force it to actually happen DPKG_MAINTSCRIPT_PACKAGE='' update-initramfs -u fi # Remove all initrd old dkms files for which there is no # corresponding initram image in /boot (LP: #1791959). # One shot only: # - bug only affected users that were upgrading packages # - new users are not affected # - LP: #1515513 took care of removing old dkms together with the kernel if [ "x$1" = xconfigure ] && [ -n "$2" ] && dpkg --compare-versions "$2" lt "0.122ubuntu8.13"; then for old_dkms_file in /boot/initrd-*.img.old-dkms \ /boot/initramfs-*.img.old-dkms \ /boot/initrd.img-*.old-dkms \ /boot/initrd-*.old-dkms; do if [ ! -e "${old_dkms_file%%.old-dkms}" ]; then rm -fv "${old_dkms_file}" fi done fi