~ubuntu-branches/ubuntu/saucy/b43-fwcutter/saucy-proposed

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