diff options
Diffstat (limited to 'scripts/pm-utils')
-rwxr-xr-x | scripts/pm-utils | 26 |
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 $? |