diff options
author | Josh <eeei3.joshua0307lol@gmail.com> | 2024-12-18 21:15:51 -0500 |
---|---|---|
committer | Josh <eeei3.joshua0307lol@gmail.com> | 2024-12-18 21:15:51 -0500 |
commit | 2c1f6b9dffafecbda32b136d06abf65558f07700 (patch) | |
tree | fc88590f762fca1564cdfb7bb8c7d412575564f1 /system/crontab |
initial commit, I think I got everything
Diffstat (limited to 'system/crontab')
-rw-r--r-- | system/crontab/crontab | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/system/crontab/crontab b/system/crontab/crontab new file mode 100644 index 0000000..44f90d5 --- /dev/null +++ b/system/crontab/crontab @@ -0,0 +1,17 @@ +# Global variables +SHELL=/bin/bash +PATH=/sbin:/bin:/usr/sbin:/usr/bin +MAILTO=root +HOME=/ + +# For details see man 5 crontab + +# Example of job definition: +# .---------------- minute (0 - 59) +# | .------------- hour (0 - 23) +# | | .---------- day of month (1 - 31) +# | | | .------- month (1 - 12) OR jan,feb,mar,apr ... +# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat +# | | | | | +# * * * * * user-name command to be executed + 15 13 * * 1 josh /sbin/fstrim --all |