Cronie contains the standard UNIX daemon crond that runs specified programs at scheduled times and related tools.
Questions tagged [cronie]
4 questions
1
vote
1 answer
Check if shell script is already running (feh) (i3)
Inside my ~/Pictures/wallpapers/ folder I have a shell script that changes the wallpaper using a while true each time the sleep function terminates:
feh-auto.sh
#!/bin/bash
while true; do
feh /home/maruko/Pictures/wallpapers --randomize --bg-fill
…

Mark
- 21
- 5
1
vote
1 answer
Cronie Setup in Arch Linux
Here is my working crontab on debian, it runs every 5 minutes.
*/05 * * * * user /usr/bin/php /var/www/monitoring/cron/status.cron.php
I'm able to execute the script status.cron.php in my browser or php cli, the script works as intended.
Now I was…

devasia2112
- 5,844
- 6
- 36
- 56
0
votes
0 answers
Unable to run crond in redhat/ubi8-minimal docker container
I am using cronie in docker container running as non root with base image redhat/ubi8-minimal. When I run crond command it exit with error
setuid: operation not permitted
Do we have example with non-root docker container having redhat/ubi8-minimal…

user-1234
- 1
- 2
0
votes
0 answers
Cron job to auto commit changes in git repository always fails on Linux server
On a server, I want to auto commit all changes of predefined git repositories every hour. And like every cron job of mine, it should send an email with stdout and stderr to me if it fails (I use msmtp for it).
This is the cronjob:
59 */1 * * *…

maxmoon
- 43
- 5