blob: bfd8578e630eeb5cc76962d4cd1e515f3ac123fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/sbin/runscript
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/sys-apps/tpctl/files/apmiser.rc,v 1.1 2002/04/25 23:39:54 rphillips Exp $
start() {
ebegin "Starting Thinkpad Battery Maximiser"
start-stop-daemon --start --background --quiet --make-pidfile \
--pidfile /var/run/apmiser.pid --exec /usr/sbin/apmiser
eend $?
}
stop () {
ebegin "Shutting down Thinkpad Battery Maximiser"
start-stop-daemon --stop --quiet --pid /var/run/apmiser.pid
eend $?
}
|