75ndiswrapper 275 B

12345678910111213141516
  1. #!/bin/bash
  2. # The ndiswrapper hook - relead the ndiswrapper module
  3. . "${PM_FUNCTIONS}"
  4. command_exists /usr/sbin/ndiswrapper || return $NA
  5. case "$1" in
  6. resume|thaw)
  7. modprobe -r ndiswrapper
  8. modprobe ndiswrapper
  9. ;;
  10. *) exit $NA
  11. ;;
  12. esac