File: bootcd.postrm

package info (click to toggle)
bootcd 6.4
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 540 kB
  • sloc: sh: 1,914; makefile: 50
file content (12 lines) | stat: -rwxr-xr-x 217 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

# Regenerate initramfs on upgrade
if [ "$1" = "remove" ]; then
	if [ -x /usr/sbin/update-initramfs -a -e /etc/initramfs-tools/initramfs.conf ]; then
		update-initramfs -u -k all
	fi
fi

#DEBHELPER#