From 79e99af9ceb3c5b53e356b1c02f6671b2a8a1d0e Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Thu, 30 Sep 2021 15:49:33 -0700 Subject: [PATCH] postgresql_server: Do not run the timescaledb setup on all the staging db servers. We only want to run this on db-datanommer02, not that and all the other staging postgresql servers. :) Signed-off-by: Kevin Fenzi --- roles/postgresql_server/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/postgresql_server/tasks/main.yml b/roles/postgresql_server/tasks/main.yml index 1f79c85bdc..7b3cbca600 100644 --- a/roles/postgresql_server/tasks/main.yml +++ b/roles/postgresql_server/tasks/main.yml @@ -211,4 +211,4 @@ - GBDR - import_tasks: datanommer.yml - when: inventory_hostname.startswith('db-datanommer02') or env == "staging" + when: inventory_hostname.startswith('db-datanommer02')