Skip to content

Commit

Permalink
Merge pull request #6 from punktDe/freebsd-directory
Browse files Browse the repository at this point in the history
Fix PostgreSQL v16 FreeBSD directory path
  • Loading branch information
medanthelinium authored Jan 16, 2025
2 parents 3e5461e + 4fb2ae5 commit abcc011
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion defaults/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ postgresql:
{%- if ansible_system == 'Linux' -%}
/etc/postgresql/{{ postgresql_version }}/main/conf.d
{%- elif ansible_system == 'FreeBSD' -%}
{%- if postgresql_version == "15" -%}
{%- if postgresql_version is version("15", ">=") -%}
/var/db/postgres/data{{ postgresql_version }}
{%- else -%}
/var/db/postgresql/data{{ postgresql_version }}
Expand Down

0 comments on commit abcc011

Please sign in to comment.