ubuntu-22.04.3-desktop-amd64/casper/filesystem/var/lib/dpkg/info/dmsetup.postinst

16 lines
163 B
Bash
Executable File

#!/bin/sh
set -e
case "$1" in
configure)
if [ -x /usr/sbin/update-initramfs ]; then
update-initramfs -u
fi
;;
esac
exit 0