From 32660881f6e82743210e65389faf53691e5f5f15 Mon Sep 17 00:00:00 2001 From: Kevin Morris Date: Mon, 6 Dec 2021 14:56:39 -0800 Subject: [PATCH] fix(docker): set notifications up in test config Signed-off-by: Kevin Morris --- docker/test-mysql-entrypoint.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/test-mysql-entrypoint.sh b/docker/test-mysql-entrypoint.sh index 1bf85b54..b3464256 100755 --- a/docker/test-mysql-entrypoint.sh +++ b/docker/test-mysql-entrypoint.sh @@ -13,4 +13,7 @@ aurweb-config set database socket '/var/run/mysqld/mysqld.sock' aurweb-config unset database password aurweb-config unset database port +# Setup notifications for testing. +aurweb-config set notifications sendmail "$(pwd)/util/sendmail" + exec "$@"