blob: 124c4e183c1c9b851c5e8bf5db517a1b77ee1100 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-fs/am-utils/files/amd.rc,v 1.2 2004/07/14 23:33:06 agriffis Exp $
depend() {
need localmount
use ypbind nfs
}
start() {
ebegin "Starting amd"
start-stop-daemon --start --quiet --exec /usr/sbin/amd -- -F /etc/amd/amd.conf
eend $? "Failed to start amd"
}
stop() {
ebegin "Stopping amd"
start-stop-daemon --stop --quiet --exec /usr/sbin/amd
eend $? "Failed to stop amd"
}
|