From 883cc665e3142ee106b61ae9a5752d0cafe558f8 Mon Sep 17 00:00:00 2001 From: maletin Date: Sun, 21 Jul 2019 10:26:07 +0200 Subject: [PATCH] parameter ensure replaced by state (#59342) corrected a typo at the absent-example. --- lib/ansible/modules/database/postgresql/postgresql_schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/database/postgresql/postgresql_schema.py b/lib/ansible/modules/database/postgresql/postgresql_schema.py index 87ece3a3fb4..f47be1b824e 100644 --- a/lib/ansible/modules/database/postgresql/postgresql_schema.py +++ b/lib/ansible/modules/database/postgresql/postgresql_schema.py @@ -94,7 +94,7 @@ EXAMPLES = r''' - name: Drop schema "acme" with cascade postgresql_schema: name: acme - ensure: absent + state: absent cascade_drop: yes '''