blob: b7c2622b81350ab455f82bd570f6da3ad90654f4 (
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/app-admin/powertweak/files/powertweakd.rc6,v 1.1 2002/08/05 15:33:59 aliz Exp $
start() {
checkconfig || return 1
ebegin "Starting proftpd"
start-stop-daemon --start --quiet --exec /usr/sbin/powertweakd -- -d -p /var/run/powertweakd.pid
eend $?
}
stop() {
ebegin "Stopping proftpd"
start-stop-daemon --stop --quiet --pidfile /var/run/powertweakd.pid
eend $?
}
|