diff options
author | Leonardo Arena <rnalrd@gmail.com> | 2010-06-08 14:45:04 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@gmail.com> | 2010-06-08 14:45:04 +0000 |
commit | ad5a02324292519891ef495f66889a1878a1275a (patch) | |
tree | 4427baf357535c21c1567f3a8327191718b83808 /main/bacula/bacula-dir-init | |
parent | e78cd26eef84709827ac616b1f06b1f2ff44f83b (diff) | |
download | aports-ad5a02324292519891ef495f66889a1878a1275a.tar.bz2 aports-ad5a02324292519891ef495f66889a1878a1275a.tar.xz |
main/bacula: moved from testing
Diffstat (limited to 'main/bacula/bacula-dir-init')
-rw-r--r-- | main/bacula/bacula-dir-init | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/main/bacula/bacula-dir-init b/main/bacula/bacula-dir-init new file mode 100644 index 0000000000..033d72f9a0 --- /dev/null +++ b/main/bacula/bacula-dir-init @@ -0,0 +1,23 @@ +#!/sbin/runscript +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/www/viewcvs.gentoo.org/raw_cvs/gentoo-x86/app-backup/bacula/files/3.0.3/bacula-dir-init,v 1.1 2009/11/08 17:14:46 wschlich Exp $ + +depend() { + need net postgresql + after firewall + use dns bacula-fd bacula-sd +} + +start() { + ebegin "Starting bacula director" + start-stop-daemon --start --quiet --exec /usr/sbin/bacula-dir \ + -- ${DIR_OPTIONS} + eend $? +} + +stop() { + ebegin "Stopping bacula director" + start-stop-daemon --stop --quiet --pidfile /var/run/bacula/bacula-dir.*.pid + eend $? +} |