summaryrefslogtreecommitdiffstats
path: root/scripts/pm-utils
blob: 93ee7635e85ed7aa2d0553074ebd52288e8c88f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/bash

. /usr/lib/pm-utils/functions

suspend_netcfg() {
	netcfg all-suspend
}

resume_netcfg() {
	netcfg all-resume
}

if type netcfg > /dev/null; then
	case "$1" in
		hibernate|suspend)
			suspend_netcfg
			;;
		thaw|resume)
			resume_netcfg
			;;
		*)
			;;
	esac
fi

exit $?