浏览代码

Scheduled stig tests

Bob Mottram 8 年前
父节点
当前提交
d24655a5b3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      src/freedombone-utils-cron

+ 1
- 1
src/freedombone-utils-cron 查看文件

@@ -81,7 +81,7 @@ function schedule_stig_tests {
81 81
     echo '#!/bin/bash' > /etc/cron.daily/stig_tests
82 82
     echo "pkill ${PROJECT_NAME}-tests" >> /etc/cron.daily/stig_tests
83 83
     echo 'rm -rf /tmp/*' >> /etc/cron.daily/stig_tests
84
-    echo '${PROJECT_NAME}-tests --stig yes' >> /etc/cron.daily/stig_tests
84
+    echo "${PROJECT_NAME}-tests --stig yes" >> /etc/cron.daily/stig_tests
85 85
     chmod +x /etc/cron.daily/stig_tests
86 86
 }
87 87