ports/databases/pgbarman/files/patch-barman_config.py
Matthew Seaman 2f364c65c9 databases/pgbarman: clean up manpages
Delete files/patch-setup.py, thus restoring the upstream default of
installing into .../share/man

Regenerate patches.
2024-01-21 15:03:40 +00:00

13 lines
374 B
Python

--- barman/config.py.orig 2023-10-03 12:56:33 UTC
+++ barman/config.py
@@ -802,8 +802,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$""")