golden hour
/etc/cron.daily
⬆️ Go Up
Upload
File/Folder
Size
Actions
.placeholder
102 B
Del
OK
apache2
539 B
Del
OK
apt-compat
1.44 KB
Del
OK
bsdmainutils
355 B
Del
OK
dpkg
1.16 KB
Del
OK
logrotate
377 B
Del
OK
man-db
1.1 KB
Del
OK
Edit: bsdmainutils
#!/bin/sh # /etc/cron.daily/calendar: BSD mainutils calendar daily maintenance script # Written by Austin Donnelly <and1000@debian.org> . /etc/default/bsdmainutils [ x$RUN_DAILY = xtrue ] || exit 0 [ -x /usr/sbin/sendmail ] || exit 0 if [ ! -x /usr/bin/cpp ]; then echo "The cpp package is needed to run calendar." exit 1 fi /usr/bin/calendar -a
Save