From d24655a5b3ef1b705f4d5018f9f9bd1cb0025123 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sat, 18 Mar 2017 14:26:02 +0000 Subject: [PATCH] Scheduled stig tests --- src/freedombone-utils-cron | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/freedombone-utils-cron b/src/freedombone-utils-cron index a942924b..2bca0b3d 100755 --- a/src/freedombone-utils-cron +++ b/src/freedombone-utils-cron @@ -81,7 +81,7 @@ function schedule_stig_tests { echo '#!/bin/bash' > /etc/cron.daily/stig_tests echo "pkill ${PROJECT_NAME}-tests" >> /etc/cron.daily/stig_tests echo 'rm -rf /tmp/*' >> /etc/cron.daily/stig_tests - echo '${PROJECT_NAME}-tests --stig yes' >> /etc/cron.daily/stig_tests + echo "${PROJECT_NAME}-tests --stig yes" >> /etc/cron.daily/stig_tests chmod +x /etc/cron.daily/stig_tests }