10 lines
217 B
Bash
Executable File
10 lines
217 B
Bash
Executable File
#!/bin/bash
|
|
TMPFILE=/tmp/system-sleep-hook-r8169.tmp
|
|
if [ "$1/$2" = "pre/suspend" ]; then
|
|
rmmod r8169
|
|
touch $TMPFILE
|
|
elif [ "$1/$2" = "post/suspend" -a -e $TMPFILE ]; then
|
|
modprobe r8169
|
|
rm -f $TMPFILE
|
|
fi
|