Initial commit.

This commit is contained in:
Darren 'Tadgy' Austin 2023-09-30 17:45:44 +01:00
commit e34a2333a7
32 changed files with 309 additions and 3 deletions

12
var/.gitignore vendored Normal file
View file

@ -0,0 +1,12 @@
cache/
chroot/
db/
empty/
lib/
lock
log/
mail/
opt/
run
service
tmp/

2
var/spool/.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
cronstamps/
mail

5
var/spool/cron/root Normal file
View file

@ -0,0 +1,5 @@
# Run the hourly, daily, weekly, and monthly cron jobs.
0 * * * * ID=sys-hourly /usr/bin/run-parts /etc/cron.hourly >/dev/null
0 0 * * * ID=sys-daily /usr/bin/run-parts /etc/cron.daily >/dev/null
0 0 * * 0 ID=sys-weekly /usr/bin/run-parts /etc/cron.weekly >/dev/null
0 0 1 * * ID=sys-monthly /usr/bin/run-parts /etc/cron.monthly >/dev/null