Initial configurations for Bender.

This commit is contained in:
Darren 'Tadgy' Austin 2022-09-03 21:19:07 +01:00
commit 0b63587655
53 changed files with 14071 additions and 3 deletions

16
var/.gitignore vendored Normal file
View file

@ -0,0 +1,16 @@
adm
cache/
db/
empty/
kerberos/
lib/
lock/
log/
mail
man/
named/
run
state/
tmp/
www/

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

@ -0,0 +1,3 @@
atjobs/
atspool/
mail/

1
var/spool/cron/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
cronstamps/

View file

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