File: postrm

package info (click to toggle)
powertop 2.8-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 3,600 kB
  • ctags: 3,192
  • sloc: cpp: 13,979; sh: 12,126; ansic: 7,547; makefile: 186; sed: 16
file content (15 lines) | stat: -rwxr-xr-x 257 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
#DEBHELPER#
# Abort if any command returns an error value
set -e

case "$1" in
	purge)
		# This package has previously been removed and is now having
		# its configuration purged from the system.
		:
		rm -rf /var/cache/powertop
		;;
esac

exit 0