diff options
Diffstat (limited to 'pm-utils/pm-utils-11-netcfg')
-rw-r--r-- | pm-utils/pm-utils-11-netcfg | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/pm-utils/pm-utils-11-netcfg b/pm-utils/pm-utils-11-netcfg deleted file mode 100644 index 86ff8bafd..000000000 --- a/pm-utils/pm-utils-11-netcfg +++ /dev/null @@ -1,27 +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 $? - |