summaryrefslogtreecommitdiffstats
path: root/pm-utils/pm-utils-11-netcfg
diff options
context:
space:
mode:
authorpiernov <piernov@piernov.org>2012-05-13 21:56:06 +0200
committerpiernov <piernov@piernov.org>2012-05-13 21:56:06 +0200
commitbb12119aa6649221a6e827cf328e9a940805e3e2 (patch)
treef8da93f9ec6f48953ba1c981174b59783db228b0 /pm-utils/pm-utils-11-netcfg
parent7cb1f8863da54901bf4bb24707b2e5e4ea8a6fcd (diff)
downloadnutyx-pakxe-bb12119aa6649221a6e827cf328e9a940805e3e2.tar.gz
nutyx-pakxe-bb12119aa6649221a6e827cf328e9a940805e3e2.tar.bz2
nutyx-pakxe-bb12119aa6649221a6e827cf328e9a940805e3e2.tar.xz
nutyx-pakxe-bb12119aa6649221a6e827cf328e9a940805e3e2.zip
Revert "ajout pm-utils"
This reverts commit da38d2b0170922c01a607a04af092e77ca2d64d1.
Diffstat (limited to 'pm-utils/pm-utils-11-netcfg')
-rw-r--r--pm-utils/pm-utils-11-netcfg27
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 $?
-