PKGBUILDs/extra/pm-utils/11netcfg

27 lines
287 B
Text
Raw Normal View History

2010-03-01 18:24:24 +00:00
#!/bin/bash
. /usr/lib/pm-utils/functions
suspend_netcfg() {
netcfg2 all-suspend
}
resume_netcfg() {
netcfg2 all-resume
}
if [ -x /usr/bin/netcfg2 ]; then
case "$1" in
hibernate|suspend)
suspend_netcfg
;;
thaw|resume)
resume_netcfg
;;
*)
;;
esac
fi
exit $?