firmware-b43legacy-installer.postrm 258 B

12345678910111213141516
  1. #!/bin/sh
  2. set -e
  3. if [ "$1" = purge ] || [ "$1" = remove ]; then
  4. if [ -d /lib/firmware/b43legacy ]; then
  5. echo "Deleting old extracted firmware..."
  6. rm -rf /lib/firmware/b43legacy/*
  7. fi
  8. fi
  9. #DEBHELPER#
  10. exit 0