소스 검색

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