blob: fb21fdd47a0c492b885df7bf001b17e6d2ee58a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-laptop/tpctl/files/apmiser.rc,v 1.2 2004/07/14 21:31:16 agriffis 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 $?
}
|