summaryrefslogtreecommitdiffstats
path: root/fwcutter/debian/firmware-b43legacy-installer.postrm
blob: 5058a307507e19699274a63e7283f18dd7ddd25c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -e

if [ "$1" = purge ] || [ "$1" = remove ]; then

        if [ -d /lib/firmware/b43legacy ]; then
                echo "Deleting old extracted firmware..."
                rm -rf /lib/firmware/b43legacy/*
        fi
fi

#DEBHELPER#

exit 0 
bues.ch cgit interface