openbsd-ports/sysutils/bacula/patches/patch-src_dird_bacula-dir_conf_in
merdely 27df66b44d Update bacula to 2.2.8.
Bacula changelog:
http://bacula.svn.sourceforge.net/viewvc/bacula/branches/Branch-2.2/bacula/ChangeLog?revision=6309&view=markup

Major port change in this version:
-main subpackage is now bacula-client
-server subpackage remains bacula-server
-bat subpackage is new bacula admin tool
-client subpackage goes away.

If the old -main subpackage was installed, the upgrade path is to
install both bacula-client and bacula-server.

Lots of input and assistance from sthen and okan.
ok okan;  "if it works for you, go for it" sthen
2008-02-07 02:53:35 +00:00

123 lines
3.8 KiB
Plaintext

$OpenBSD: patch-src_dird_bacula-dir_conf_in,v 1.3 2008/02/07 02:53:35 merdely Exp $
--- src/dird/bacula-dir.conf.in.orig Wed Oct 3 12:22:07 2007
+++ src/dird/bacula-dir.conf.in Mon Oct 22 11:55:00 2007
@@ -13,7 +13,8 @@
#
Director { # define myself
- Name = @hostname@-dir
+ Name = bacula-dir
+ DIRaddress = 127.0.0.1
DIRport = @dir_port@ # where we listen for UA connections
QueryFile = "@scriptdir@/query.sql"
WorkingDirectory = "@working_dir@"
@@ -27,7 +28,7 @@ JobDefs {
Name = "DefaultJob"
Type = Backup
Level = Incremental
- Client = @hostname@-fd
+ Client = bacula-fd
FileSet = "Full Set"
Schedule = "WeeklyCycle"
Storage = File
@@ -48,7 +49,7 @@ Job {
#Job {
# Name = "Client2"
-# Client = @hostname@2-fd
+# Client = client2-fd
# JobDefs = "DefaultJob"
# Write Bootstrap = "@working_dir@/Client2.bsr"
#}
@@ -75,8 +76,8 @@ Job {
Job {
Name = "RestoreFiles"
Type = Restore
- Client=@hostname@-fd
- FileSet="Full Set"
+ Client = bacula-fd
+ FileSet = "Full Set"
Storage = File
Pool = Default
Messages = Standard
@@ -101,11 +102,7 @@ FileSet {
# if you have other partitons such as /usr or /home
# you will probably want to add them too.
#
-# By default this is defined to point to the Bacula build
-# directory to give a reasonable FileSet to backup to
-# disk storage during initial testing.
-#
- File = @BUILD_DIR@
+ File = /
}
#
@@ -150,8 +147,8 @@ FileSet {
# Client (File Services) to backup
Client {
- Name = @hostname@-fd
- Address = @hostname@
+ Name = bacula-fd
+ Address = 127.0.0.1
FDPort = @fd_port@
Catalog = MyCatalog
Password = "@fd_password@" # password for FileDaemon
@@ -165,8 +162,8 @@ Client {
# You should change Name, Address, and Password before using
#
#Client {
-# Name = @hostname@2-fd
-# Address = @hostname@2
+# Name = client2-fd
+# Address = client2.my.domain
# FDPort = @fd_port@
# Catalog = MyCatalog
# Password = "@fd_password@2" # password for FileDaemon 2
@@ -180,7 +177,7 @@ Client {
Storage {
Name = File
# Do not use "localhost" here
- Address = @hostname@ # N.B. Use a fully qualified name here
+ Address = 127.0.0.1 # N.B. Use a fully qualified name here
SDPort = @sd_port@
Password = "@sd_password@"
Device = FileStorage
@@ -193,7 +190,7 @@ Storage {
#Storage {
# Name = DDS-4
# Do not use "localhost" here
-# Address = @hostname@ # N.B. Use a fully qualified name here
+# Address = 127.0.0.1 # N.B. Use a fully qualified name here
# SDPort = @sd_port@
# Password = "@sd_password@" # password for Storage daemon
# Device = DDS-4 # must be same as Device in Storage daemon
@@ -205,7 +202,7 @@ Storage {
#Storage {
# Name = "8mmDrive"
# Do not use "localhost" here
-# Address = @hostname@ # N.B. Use a fully qualified name here
+# Address = 127.0.0.1 # N.B. Use a fully qualified name here
# SDPort = @sd_port@
# Password = "@sd_password@"
# Device = "Exabyte 8mm"
@@ -216,7 +213,7 @@ Storage {
#Storage {
# Name = "DVD"
# Do not use "localhost" here
-# Address = @hostname@ # N.B. Use a fully qualified name here
+# Address = 127.0.0.1 # N.B. Use a fully qualified name here
# SDPort = @sd_port@
# Password = "@sd_password@"
# Device = "DVD Writer"
@@ -292,7 +289,7 @@ Pool {
# Restricted console used by tray-monitor to get the status of the director
#
Console {
- Name = @hostname@-mon
+ Name = bacula-mon
Password = "@mon_dir_password@"
CommandACL = status, .status
}