]> git.pld-linux.org Git - packages/bacula-backup-mysql.git/blobdiff - bacula-backup-mysql.conf
- cleanup: DB class is not actually creating blessed reference
[packages/bacula-backup-mysql.git] / bacula-backup-mysql.conf
index 2820aa6b5afe1ee51904cbd477422cc291a48b78..1237e001e32464e67017fd43b18d5dd04ac62c86 100644 (file)
@@ -1,27 +1,40 @@
-; vim:ft=dosini
+# vim:ft=apachestyle
 
-[clusters]
-;cluster=won2
-;cluster=eventum
-cluster=default
+# clusters to backup
+# there is nothing special about name "mysql", name just picked as convience
+<clusters>
+       cluster mysql
+#      cluster won2
+#      cluster eventum
+</clusters>
 
-[client]
-user=mysql
-password=
+# client connection parameters, can be overriden per cluster
+<client>
+       user mysql
+#      password
+</client>
 
-[options]
-tmpdir=/media/backup/tmp
-outdir=/media/backup/mysql
+# global options, can be overriden per cluster
+<options>
+       tmpdir /srv/bacula/tmp
+       outdir /srv/bacula/mysql
+</options>
 
-[won2]
-user=mysql
-password=
-socket=/var/lib/mysql/mysql.sock
+# options for mysql cluster
+<cluster mysql>
+       socket /var/lib/mysql/mysql.sock
+#      exclude_database mysql
+#      include_database mysql
+</cluster>
 
-exclude_database=won2backup
-exclude_database=test
-include_database=won2_ui
-include_database=delfi_watson2
+# options for "won2" cluster
+<cluster won2>
+       user mysql
+       password
+       socket /var/lib/mysql/mysql.sock
 
-[default]
-socket=/var/lib/mysql/mysql.sock
+       exclude_database won2backup
+       exclude_database test
+       include_database won2_ui
+       include_database delfi_watson2
+</cluster>
This page took 0.055906 seconds and 4 git commands to generate.