summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/pm-utils/11netcfg
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core-testing/pm-utils/11netcfg')
-rw-r--r--abs/core-testing/pm-utils/11netcfg26
1 files changed, 0 insertions, 26 deletions
diff --git a/abs/core-testing/pm-utils/11netcfg b/abs/core-testing/pm-utils/11netcfg
deleted file mode 100644
index 1b4d05e..0000000
--- a/abs/core-testing/pm-utils/11netcfg
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/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 $?