Bläddra i källkod

Clear temp files daily

Bob Mottram 8 år sedan
förälder
incheckning
fffc1cfbe7
1 ändrade filer med 1 tillägg och 0 borttagningar
  1. 1
    0
      src/freedombone-utils-cron

+ 1
- 0
src/freedombone-utils-cron Visa fil

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