File: initrd-tools.postrm

package info (click to toggle)
initrd-tools 0.1.84.2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 156 kB
  • ctags: 32
  • sloc: sh: 1,698; makefile: 45
file content (13 lines) | stat: -rw-r--r-- 196 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

if [ "$1" = purge ]; then
	rm -rf /etc/mkinitrd
	if [ -x /sbin/update-modules ]; then
		/sbin/update-modules
	fi
	update-rc.d initrd-tools.sh remove > /dev/null
fi

#DEBHELPER#