| Server IP : 159.253.20.91 / Your IP : 216.73.216.111 Web Server : nginx/1.20.2 System : Linux se38c9e53.fastvps-server.com 5.10.0-13-amd64 #1 SMP Debian 5.10.106-1 (2022-03-17) x86_64 User : pr11_ru_usr ( 1041) PHP Version : 8.1.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/lib/dpkg/info/ |
Upload File : |
#!/bin/sh
set -e
# Several (init)scripts are referencing these executables, add compatibility
# symlinks for systems not converted to usr-merge
if [ "$1" = 'configure' -a ! -e '/bin/plymouth' ]; then
ln -s /usr/bin/plymouth /bin/plymouth
fi
if [ "$1" = 'configure' -a ! -e '/sbin/plymouthd' ]; then
ln -s /usr/sbin/plymouthd /sbin/plymouthd
fi
case "${1}" in
configure|abort-upgrade|abort-remove|abort-deconfigure)
if which update-initramfs >/dev/null 2>&1 && [ -e /etc/initramfs-tools/initramfs.conf ]; then
update-initramfs -u
fi
;;
*)
echo "postinst called with unknown argument \`${1}'" >&2
exit 1
;;
esac
# Automatically added by dh_installinit/13.3.3
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
if [ -x "/etc/init.d/plymouth" ]; then
update-rc.d plymouth defaults >/dev/null || exit 1
fi
fi
# End automatically added section
# Automatically added by dh_installinit/13.3.3
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
if [ -x "/etc/init.d/plymouth-log" ]; then
update-rc.d plymouth-log defaults >/dev/null || exit 1
fi
fi
# End automatically added section
exit 0