taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 192d5e0f0c9861ee0ab0446e5dc2f24269bb592d
parent a3af99a2f61d55bd4b8a06afa4be29d343d42049
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Fri, 30 Nov 2018 16:09:00 +0100

Auditor deployment.

Prefer 'bash' when sudo-ing commands.

Diffstat:
Mbuildbot/make_auditor_reports.sh | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/buildbot/make_auditor_reports.sh b/buildbot/make_auditor_reports.sh @@ -27,11 +27,11 @@ SUDO_COLOR="sudo -u ${ACTIVE_COLOR}" JINJA_TEMPLATE="auditor-report.tex.j2" REPORTS_DIRECTORY="/home/${TALER_DEPLOYMENT}/reports" -${SUDO_COLOR} sh -c \ +${SUDO_COLOR} bash -c \ "source /home/${ACTIVE_COLOR}/activate; \ taler-auditor > ${REPORT_FILE}.txt" -${SUDO_COLOR} sh -c \ +${SUDO_COLOR} bash -c \ "source /home/${ACTIVE_COLOR}/activate; \ taler-wire-auditor > ${WIRE_REPORT_FILE}.txt"