From 5319d197313b084adc9466537a1ec9c9b60b6fce Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Tue, 8 Oct 2019 08:56:24 +0200 Subject: [PATCH] Cleared username from cron entry --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 8221e8a..174b5b4 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -22,7 +22,7 @@ prepare_crontab () { echo "crond -d 2 -f" >> /entrypoint.cron.sh # check interval can be configured using environment variables - echo "${CHECK_INTERVAL} root infracheck --force --wait=${WAIT_TIME} $(get_common_args) " > /etc/crontabs/root + echo "${CHECK_INTERVAL} infracheck --force --wait=${WAIT_TIME} $(get_common_args) " > /etc/crontabs/root chmod +x /entrypoint.cron.sh }