From 12773352a5ff7f7f50b745013a1f412779f07613 Mon Sep 17 00:00:00 2001 From: Tim Flink Date: Thu, 7 Sep 2017 18:31:36 +0000 Subject: [PATCH] fixing args to keep script from erroring out, changing password method --- roles/ufmonitor/templates/update-ufmonitor.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/ufmonitor/templates/update-ufmonitor.j2 b/roles/ufmonitor/templates/update-ufmonitor.j2 index 855ca7bfcc..5610a53ecc 100644 --- a/roles/ufmonitor/templates/update-ufmonitor.j2 +++ b/roles/ufmonitor/templates/update-ufmonitor.j2 @@ -4,5 +4,5 @@ # This job handles updating the ufmonitor database with new data from a pagure instance # -source {{ ufmonitor_config_path }} -docker run --add-host=postgres:{{ ufmonitor_db_host}} {{ updater_container_image }} -l /var/log/ufmonitor/updater.log +export POSTGRES_DB_PASSWORD='{{ ufmonitor_db_password }}' +docker run --add-host=postgres:{{ ufmonitor_db_host}} {{ updater_container_image }}