15 lines
177 B
Bash
15 lines
177 B
Bash
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
remove)
|
|
if command -v update-initramfs >/dev/null; then
|
|
update-initramfs -u
|
|
fi
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|