File: fuse.postrm

package info (click to toggle)
fuse 2.9.7-1%2Bdeb9u2
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 4,184 kB
  • sloc: ansic: 16,524; sh: 11,996; makefile: 169
file content (29 lines) | stat: -rw-r--r-- 331 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh

set -e

case "${1}" in
	remove)
		if [ -x /usr/sbin/update-initramfs ]
		then
			update-initramfs -u
		fi
		;;

	purge)
		rm -f /etc/fuse.conf
		;;

	upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)

		;;

	*)
		echo "postrm called with unknown argument \`${1}'" >&2
		exit 1
		;;
esac

#DEBHELPER#

exit 0