Can you modify the script to release the lock after the process has started?
Linux
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
Yes! I found the - u flag on flock and that got it working. Thanks for the attention anyway.
Could you just save the pid of that cronjob in a file? (Assuming this cronjob calls bash script). Before the next run of the cronjob check if that process with that pid is still running? Hoping, I understand your problem correctly. You do not want to run the cronjob again until the first run finishes?
Flock does this functionality, the deal is that it waited for the long-running process to end so it wouldn't release the lock after the script was done. Adding a line manually releasing it fixed it.
It's an auto-update script, you don't wanna start a new update while one is underway.
Thanks for the update maybe I'm a bit oldschool and need to dig deeper "in the flock" ;-)
sorry fLock it my phone doesn't like it and don't really know what the f stands for. but flock is a Linux command that let's you manage simple concurrency issues https://www.man7.org/linux/man-pages/man1/flock.1.html
the f
stands for file. The c manpage has some details on how it works: https://www.man7.org/linux/man-pages/man2/flock.2.html