summaryrefslogtreecommitdiff
path: root/databases/pgbarman/files/patch-barman_config.py
diff options
context:
space:
mode:
authorMatthew Seaman <matthew@FreeBSD.org>2014-12-02 15:41:14 +0000
committerMatthew Seaman <matthew@FreeBSD.org>2014-12-02 15:41:14 +0000
commit08e16cd8b282f09f97c798f090d28a7c54662734 (patch)
treedfd3a37f2aa5726aeab2e13a62b961ee02d3b197 /databases/pgbarman/files/patch-barman_config.py
parentNew port: (diff)
New port:
Barman: backup and recovery manager for PostgreSQL. Barman is an open-source administration tool for disaster recovery of PostgreSQL servers written in Python. It allows your organisation to perform remote backups of multiple servers in business critical environments and helps DBAs during the recovery phase. WWW: http://www.pgbarman.org/
Notes
Notes: svn path=/head/; revision=373768
Diffstat (limited to 'databases/pgbarman/files/patch-barman_config.py')
-rw-r--r--databases/pgbarman/files/patch-barman_config.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/databases/pgbarman/files/patch-barman_config.py b/databases/pgbarman/files/patch-barman_config.py
new file mode 100644
index 000000000000..b460dd23ad4c
--- /dev/null
+++ b/databases/pgbarman/files/patch-barman_config.py
@@ -0,0 +1,13 @@
+--- barman/config.py.orig 2014-12-02 14:47:11 UTC
++++ barman/config.py
+@@ -341,8 +341,8 @@ class Config(object):
+ """
+ CONFIG_FILES = [
+ '~/.barman.conf',
+- '/etc/barman.conf',
+- '/etc/barman/barman.conf',
++ '%%PREFIX%%/etc/barman.conf',
++ '%%PREFIX%%/etc/barman/barman.conf',
+ ]
+
+ _QUOTE_RE = re.compile(r"""^(["'])(.*)\1$""")