postrm 128 B

12345678910111213
  1. #!/bin/sh
  2. set -e
  3. if [ "x$1" = xremove ]; then
  4. if which update-initramfs >/dev/null 2>&1
  5. then
  6. update-initramfs -u
  7. fi
  8. fi