Comment 20 for bug 130979

Revision history for this message
diaboflo (ubuntu-diaboflo) wrote :

adding this file cures my problem. I know it inappropriate, but hey I can suspend and resume now.

#!/bin/sh
#/usr/lib/pm-utils/sleep.d/99zkill-vbetool
killvbe() {
        sleep 2
        killall vbetool
}

if [ "$1" = "resume" ]
  then
        killvbe &
fi
exit 0