From e40e05576b8c5c9b7a9987aaba9cae046788a4cc Mon Sep 17 00:00:00 2001 From: Abhijeet Kasurde Date: Tue, 3 Mar 2020 06:48:39 +0530 Subject: [PATCH] [2.9] Fix links in Postgresql modules (#67525) Signed-off-by: Abhijeet Kasurde (cherry picked from commit 70b9bdbce685125f5ea990aa0894455faa43e71f) --- changelogs/fragments/67511-postgresql-fix-link.yml | 2 ++ lib/ansible/modules/database/postgresql/postgresql_table.py | 2 +- lib/ansible/plugins/doc_fragments/postgres.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 changelogs/fragments/67511-postgresql-fix-link.yml diff --git a/changelogs/fragments/67511-postgresql-fix-link.yml b/changelogs/fragments/67511-postgresql-fix-link.yml new file mode 100644 index 00000000000..c78551a25f6 --- /dev/null +++ b/changelogs/fragments/67511-postgresql-fix-link.yml @@ -0,0 +1,2 @@ +minor_changes: +- Fix URL in postgresql_table documentation. diff --git a/lib/ansible/modules/database/postgresql/postgresql_table.py b/lib/ansible/modules/database/postgresql/postgresql_table.py index c7a70d947d5..fc094596186 100644 --- a/lib/ansible/modules/database/postgresql/postgresql_table.py +++ b/lib/ansible/modules/database/postgresql/postgresql_table.py @@ -124,7 +124,7 @@ seealso: link: https://www.postgresql.org/docs/current/sql-droptable.html - name: PostgreSQL data types description: Complete reference of the PostgreSQL data types documentation. - link: postgresql.org/docs/current/datatype.html + link: https://www.postgresql.org/docs/current/datatype.html author: - Andrei Klychkov (@Andersson007) extends_documentation_fragment: postgres diff --git a/lib/ansible/plugins/doc_fragments/postgres.py b/lib/ansible/plugins/doc_fragments/postgres.py index 7501746fa4f..f093f542093 100644 --- a/lib/ansible/plugins/doc_fragments/postgres.py +++ b/lib/ansible/plugins/doc_fragments/postgres.py @@ -33,7 +33,7 @@ options: ssl_mode: description: - Determines whether or with what priority a secure SSL TCP/IP connection will be negotiated with the server. - - See https://www.postgresql.org/docs/current/static/libpq-ssl.html for more information on the modes. + - See U(https://www.postgresql.org/docs/current/static/libpq-ssl.html) for more information on the modes. - Default of C(prefer) matches libpq default. type: str default: prefer