blob: 999e70abf606ee5f8892588b2c9320d2876ef3cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/sbin/runscript
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/pam_smb/files/pamsmbd-init,v 1.2 2003/02/14 23:07:37 vapier Exp $
depend() {
need net
}
start() {
ebegin "Starting pamsmbd"
start-stop-daemon --start --quiet --exec /usr/sbin/pamsmbd
eend $?
}
stop() {
ebegin "Stopping pamsmbd"
start-stop-daemon --stop --quiet --name pamsmbd
eend $?
}
|