1eef27beb8
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/cronie#e304e4268e6269aacf1f7bc778fbcadb9d4a1505
10 lines
111 B
Bash
10 lines
111 B
Bash
#!/bin/bash
|
|
|
|
if [ -s /tmp/run-job.lock ]; then
|
|
exit 0
|
|
fi
|
|
|
|
echo $PPID > /tmp/run-job.lock
|
|
sleep 1234567
|
|
exit 0
|