#!/bin/bash

case "$1" in
    resume|thaw)
        modprobe -r ndiswrapper
        modprobe ndiswrapper
        ;;
esac
