mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
26 lines
287 B
Bash
26 lines
287 B
Bash
#!/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 $?
|