I have a python script that I want to execute every 10 minutes. However it takes 30 minutes to complete that script. (It's a script to query approx 1400+ servers) .If I let it execute every 10 minutes will it terminate the already running cron job or will it just start a new one and leave the other one running?
If it stops the other job is there a way I am able to make it run multiple at the same time?
If it has any help this is my command for the cron job which is scheduled to run every 10 minutes
cd /home/forge/****.**********.*** && ./status.py
Thanks in advance.