ubuntu-22.04.3-desktop-amd64/casper/filesystem/var/lib/dpkg/info/plymouth-theme-spinner.postrm

17 lines
229 B
Bash
Executable File

#!/bin/sh
set -e
if [ "x$1" = xremove ]; then
if which update-initramfs >/dev/null 2>&1
then
update-initramfs -u
fi
if [ -e /boot/grub/grub.cfg ] && which update-grub >/dev/null 2>&1; then
update-grub || true
fi
fi