summaryrefslogtreecommitdiff
path: root/src/pm-powersave
diff options
context:
space:
mode:
authorVictor Lowther <victor.lowther@gmail.com>2008-02-02 10:10:54 -0600
committerVictor Lowther <victor.lowther@gmail.com>2008-02-02 12:42:01 -0600
commitf1c9c11681680e059abc0bb56f0b20a726c29f91 (patch)
tree07ee31bd455552cd7398e98a0ea558cdb6738d55 /src/pm-powersave
parent7616c68a5aed5caf806056b6dd2d47a2f68950ad (diff)
Renamed pm-powersave in preperation for making it location-independent.
Diffstat (limited to 'src/pm-powersave')
-rwxr-xr-xsrc/pm-powersave37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/pm-powersave b/src/pm-powersave
deleted file mode 100755
index 5611586..0000000
--- a/src/pm-powersave
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/sh
-# vim:noexpandtab
-# Simple powersave script
-#
-# Copyright 2006 Red Hat, Inc.
-#
-# Based on work from:
-# Bill Nottingham <notting@redhat.com>
-# Peter Jones <pjones@redhat.com>
-# David Zeuthen <davidz@redhat.com>
-# Richard Hughes <richard@hughsie.com>
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of version 2 of the GNU General Public License as
-# published by the Free Software Foundation.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-#
-
-POWERSAVE_LOGFILE="/dev/null"
-PM_FUNCTIONS="/usr/lib/pm-utils/functions"
-. "${PM_FUNCTIONS}"
-
-if [ "x$1" = "xtrue" -o "x$1" = "xfalse" ] ; then
- init_logfile "${POWERSAVE_LOGFILE}"
- run_hooks power "$1"
-else
- echo "Argument needs to be true or false" >&2
- exit 1
-fi