We have a use case where we need to distinguish if a process is launched from crontab or if it is a background process in Python ?
Are there any process attributes which can be checked to know if it a cron launched process or it is a background process?
A process launched from
cron
will havecron
as its parent process.Of course, in the general case, a process launched from a process which was launched from
cron
will havecron
as its grandparent; and if the launcher process was a child ofcron
but is now terminated, the child process will be reparented and haveinit
(process number 1) as its parent. at which point you can no longer tell if it previously hadcron
as its parent.None of this is specific to Python, but maybe check After starting process, how to get parent's PID in the child? for implementation details.