23 lines
606 B
Plaintext
23 lines
606 B
Plaintext
|
#!/sbin/runscript
|
||
|
# Copyright 1999-2014 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: /var/cvsroot/gentoo-x86/app-backup/bareos/files/bareos-dir.initd,v 1.4 2014/05/04 17:03:59 mschiff Exp $
|
||
|
|
||
|
depend() {
|
||
|
use dns bareos-fd bareos-sd
|
||
|
}
|
||
|
|
||
|
start() {
|
||
|
ebegin "Starting bareos director"
|
||
|
checkpath -d -m 0750 -o bareos:bareos /run/bareos
|
||
|
start-stop-daemon --start --quiet --exec /usr/sbin/bareos-dir \
|
||
|
-- ${DIR_OPTIONS}
|
||
|
eend $?
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
ebegin "Stopping bareos director"
|
||
|
start-stop-daemon --stop --quiet --pidfile /run/bareos/bareos-dir.*.pid
|
||
|
eend $?
|
||
|
}
|