New config for samba 4 ebuild
git-svn-id: svn+ssh://svnintern.kmrc.de/projects/gentoo/iwm-overlay@9303 cbe59ace-07ea-0310-918e-868702b5370d
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
#!/sbin/runscript
|
||||
# Copyright 1999-2007 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License, v2 or later
|
||||
# $Header: $
|
||||
|
||||
opts="reload"
|
||||
|
||||
depend() {
|
||||
after slapd
|
||||
need net
|
||||
}
|
||||
|
||||
start() {
|
||||
ebegin "Starting Samba 4.x daemon... "
|
||||
start-stop-daemon --start --quiet \
|
||||
--exec ${DAEMON} -- ${samba_start_options}
|
||||
eend $?
|
||||
}
|
||||
|
||||
stop() {
|
||||
ebegin "Stopping Samba 4.x daemon... "
|
||||
start-stop-daemon --stop --quiet \
|
||||
--pidfile /var/run/samba/samba.pid
|
||||
eend $?
|
||||
}
|
||||
|
||||
reload() {
|
||||
ebegin "Reloading Samba 4.x daemon... "
|
||||
killall -HUP smbd
|
||||
eend $?
|
||||
}
|
||||
Reference in New Issue
Block a user