You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This role does not setup a PostgreSQL server (but will create a database if
74
-
needed), so you'll need to setup a PostgreSQL server and create a database user
75
-
separate from this role. Take a look at the _Example Playbook_ section.
75
+
This role does not setup a PostgreSQL server (but will create a database if needed), so you'll need to setup a PostgreSQL server and create a database user separate from this role.
76
+
Take a look at the _Example Playbook_ section.
76
77
77
-
WARNING: NetBox v2.2.0+ require PostgreSQL 9.4 at the minimum, which may not be
78
-
available in your distribution's repos. You may want to use a role for this.
78
+
In addition, for Ansible 2.10+, you may need to install the `community.postgresql` collection.
79
+
It is recommended to specify this in your playbook's `requirements.yml` file.
80
+
For example:
81
+
82
+
[source,yaml]
83
+
----
84
+
---
85
+
collections:
86
+
- name: community.postgresql
87
+
version: 3.4.0
88
+
----
89
+
90
+
WARNING: NetBox v2.2.0+ require PostgreSQL 9.4 at the minimum, which may not be available in your distribution's repos.
0 commit comments