File: bootcd.postrm

package info (click to toggle)
bootcd 6.9.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 520 kB
  • sloc: sh: 1,940; makefile: 49
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#