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

« back to all changes in this revision

Viewing changes to debian/firmware-b43-lpphy-installer.postrm

  • Committer: Package Import Robot
  • Author(s): Daniel Echeverry
  • Date: 2013-05-06 21:40:30 UTC
  • mfrom: (10.1.22 sid)
  • Revision ID: package-import@ubuntu.com-20130506214030-4odu4dqiwm6e0j3u
Tags: 1:017-1
* Release from experimental to unstable
* debian/firmware-b43legacy-installer.lintian-overrides
  + Use proper package name in lintian override

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
set -e
4
 
 
5
 
if [ "$1" = purge ] || [ "$1" = remove ]; then
6
 
 
7
 
        if [ -d /lib/firmware/b43 ]; then
8
 
                echo "Deleting old extracted firmware..."
9
 
                rm -rf /lib/firmware/b43
10
 
        fi
11
 
fi
12
 
 
13
 
#DEBHELPER#
14
 
 
15
 
exit 0