aboutsummaryrefslogtreecommitdiffstats
path: root/testing/bareos/bareos-sd-init
diff options
context:
space:
mode:
authorFrancesco Colista <fcolista@alpinelinux.org>2016-08-19 14:19:23 +0000
committerFrancesco Colista <fcolista@alpinelinux.org>2016-08-19 14:19:23 +0000
commit6bbcbd0850861709f5f6e41ccfbc0f4eca6db10c (patch)
treecae278789a37106e66ef24701e94398de2a06009 /testing/bareos/bareos-sd-init
parent440f062838ed90801feff663addbc3292dd76696 (diff)
downloadaports-6bbcbd0850861709f5f6e41ccfbc0f4eca6db10c.tar.bz2
aports-6bbcbd0850861709f5f6e41ccfbc0f4eca6db10c.tar.xz
community/bareos: moved from testing
Diffstat (limited to 'testing/bareos/bareos-sd-init')
-rw-r--r--testing/bareos/bareos-sd-init22
1 files changed, 0 insertions, 22 deletions
diff --git a/testing/bareos/bareos-sd-init b/testing/bareos/bareos-sd-init
deleted file mode 100644
index 2375b8e457..0000000000
--- a/testing/bareos/bareos-sd-init
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/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-sd-init,v 1.1 2009/11/08 17:14:46 wschlich Exp $
-
-depend() {
- need net
- use dns
-}
-
-start() {
- ebegin "Starting bacula storage daemon"
- start-stop-daemon --start --quiet --exec /usr/sbin/bacula-sd \
- -- ${SD_OPTIONS}
- eend $?
-}
-
-stop() {
- ebegin "Stopping bacula storage daemon"
- start-stop-daemon --stop --quiet --pidfile /var/run/bacula/bacula-sd.*.pid
- eend $?
-}