refactor cron insertion
This commit is contained in:
parent
b9357c6389
commit
b79438d346
|
@ -253,7 +253,7 @@ sudo chmod +x /home/Cardigan/daemons/gps/position
|
||||||
# make the firmware dir writable
|
# make the firmware dir writable
|
||||||
sudo chmod 777 -R /home/Cardigan/firmware/
|
sudo chmod 777 -R /home/Cardigan/firmware/
|
||||||
|
|
||||||
# make the firmware dir writable
|
# make the state dir writable
|
||||||
sudo chmod 777 -R /home/Cardigan/state/
|
sudo chmod 777 -R /home/Cardigan/state/
|
||||||
|
|
||||||
|
|
||||||
|
@ -275,18 +275,17 @@ sudo npm i --production
|
||||||
|
|
||||||
|
|
||||||
# setup clear cron job
|
# setup clear cron job
|
||||||
crontab -l > cleanerJob
|
crontab -l > cronJobs
|
||||||
echo "* * * * * sudo node /home/Cardigan/modules/video/helpers/cleaner.js" >> cleanerJob
|
|
||||||
|
# setup cleaner cron job
|
||||||
|
echo "* * * * * sudo node /home/Cardigan/modules/video/helpers/cleaner.js" >> cronJobs
|
||||||
|
|
||||||
# setup ensureAllClipsAreDecoded cron job
|
# setup ensureAllClipsAreDecoded cron job
|
||||||
crontab -l > ensureAllClipsAreDecoded
|
echo "* * * * * sudo node /home/Cardigan/modules/video/helpers/ensureAllClipsAreDecoded.js" >> cronJobs
|
||||||
echo "* * * * * sudo node /home/Cardigan/modules/video/helpers/ensureAllClipsAreDecoded.js" >> ensureAllClipsAreDecoded
|
|
||||||
|
|
||||||
# install new cron file
|
crontab cronJobs
|
||||||
crontab cleanerJob
|
|
||||||
crontab ensureAllClipsAreDecoded
|
|
||||||
rm cleanerJob
|
rm cleanerJob
|
||||||
rm ensureAllClipsAreDecoded
|
|
||||||
|
|
||||||
|
|
||||||
echo "========== Install Indicators ============"
|
echo "========== Install Indicators ============"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user