summaryrefslogtreecommitdiffstats
path: root/scripts/pm-utils
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/pm-utils')
-rwxr-xr-xscripts/pm-utils26
1 files changed, 0 insertions, 26 deletions
diff --git a/scripts/pm-utils b/scripts/pm-utils
deleted file mode 100755
index 93ee763..0000000
--- a/scripts/pm-utils
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/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 $?