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

2.1.9 by Rene Engelhard
* QA upload
1
#!/bin/sh
2
3
set -e
4
10.1.13 by Fabrizio Regalli
* Moved tmp=`mktemp -q -d` command on top into postinst scripts
5
if [ "$1" = purge ] || [ "$1" = remove ]; then
6
10.1.18 by Fabrizio Regalli
* Replaced if statement using case in
7
        if [ -d /lib/firmware/b43legacy ]; then
10.1.13 by Fabrizio Regalli
* Moved tmp=`mktemp -q -d` command on top into postinst scripts
8
                echo "Deleting old extracted firmware..."
10.1.22 by Daniel Echeverry
* Release from experimental to unstable
9
                rm -rf /lib/firmware/b43legacy/*
10.1.13 by Fabrizio Regalli
* Moved tmp=`mktemp -q -d` command on top into postinst scripts
10
        fi
2.1.9 by Rene Engelhard
* QA upload
11
fi
12
13
#DEBHELPER#
10.1.13 by Fabrizio Regalli
* Moved tmp=`mktemp -q -d` command on top into postinst scripts
14
15
exit 0