cleaned up some example crontabs
authorChris Koeritz <koeritz@gmail.com>
Sun, 22 May 2022 19:33:54 +0000 (15:33 -0400)
committerChris Koeritz <koeritz@gmail.com>
Sun, 22 May 2022 19:33:54 +0000 (15:33 -0400)
24 files changed:
infobase/configuration/cron/aa_cron_defaults.crontab
infobase/configuration/cron/backup_git_account.crontab
infobase/configuration/cron/backup_maildir.crontab
infobase/configuration/cron/backup_mysql_databases.crontab
infobase/configuration/cron/backup_photo_albums.crontab
infobase/configuration/cron/backup_serene_system.crontab
infobase/configuration/cron/backup_trac.crontab
infobase/configuration/cron/bookmarks_builder.crontab
infobase/configuration/cron/emit_crontab.crontab
infobase/configuration/cron/letsencrypt_renewal.crontab
infobase/configuration/cron/mailman_attribute_fix.crontab
infobase/configuration/cron/nechung_fortune.crontab
infobase/configuration/cron/opensim_restart.crontab
infobase/configuration/cron/pack_feisty_for_web.crontab
infobase/configuration/cron/periodic_reboot.crontab
infobase/configuration/cron/process_check.crontab
infobase/configuration/cron/random_sound.crontab
infobase/configuration/cron/snarf_linux_configuration.crontab
infobase/configuration/cron/synch_and_swim_downstream.crontab
infobase/configuration/cron/tell_zooty_our_ip.crontab
infobase/configuration/cron/time_synch.crontab
infobase/configuration/cron/update_apt_based_linux.crontab
infobase/configuration/cron/uptime_report.crontab
infobase/configuration/cron/web_group_perm_fix.crontab

index a6ba68498d914f3371f7be7234ffc7a9d33e7f5d..a33b2fc3fe5cfea646c0bb414a3703f125072899 100644 (file)
@@ -1,5 +1,5 @@
 
-#[aa cron defaults]
+#[aa_cron_defaults]
 #
 # cron default bits to add at top of crontab...
 # by fred t. hamster, GNU GPL v3 license.
index ae28d5626aa9bec6755c92cf6daba918eecfe335..fde4348e6169f9ad6d05a7459dc696d433a3bf58 100644 (file)
@@ -1,7 +1,7 @@
 
 ##############
 
-#[backup git account]
+#[backup_git_account]
 # archives the whole ~git folder with all account databases into a compressed tar file.
 34 20 * * 5 tar -czf /z/stuffing/archives/git_archive_$(date +"\%Y_\%m_\%d_\%H\%M_\%S" | tr -d '/\n/').tar.gz /home/git &>>/tmp/${CRONUSER}-cron-backup_git_account.log
 
index a8af8d69c87351ee8c1d82b2fd9f13dac4bcd1b3..2cbde0839e556cd66edc05687b938bf6d06b8864 100644 (file)
@@ -1,7 +1,7 @@
 
 ##############
 
-#[backup maildir]
+#[backup_maildir]
 # backs up the maildir folder for fred bi-monthly.
 8 4 3,14 * * (source $FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh; tar -czf /z/stuffing/archives/maildir_backup_$(date_stringer).tar.gz $HOME/Maildir) &>/tmp/${CRONUSER}-cron-backup_maildir.log
 
index be5ffcf90e1a410013804c5bf984501bed0de918..c80f91ac2217c9cd1b3620df8eb2cf89db8dda0b 100644 (file)
@@ -1,9 +1,9 @@
 
 ##############
 
-#[backup mysql databases]
-# backs up all of our mysql databases on a weekly basis.
-28 4 * * 2 (source $FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh; mysqldump -u root '-pPASSWORD' --all-databases | gzip > /z/stuffing/archives/database_backup_$(hostname)_$(date_stringer).sql.gz) &>>/tmp/${CRONUSER}-cron-backup_mysql_databases.log
+#[backup_all_mysql_databases]
+# backs up all of our mysql databases twice a week (as currently configured).
+28 4 * * */3 (source $FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh; mysqldump -u root '-pPASSWORD' --all-databases | gzip > /z/stuffing/archives/database_backup_$(hostname)_$(date_stringer).sql.gz) &>>/tmp/${CRONUSER}-cron-backup_mysql_databases.log
 
 ##############
 
index b93e56ffa6bae10b30b71a9888c69a4eb0020e91..b295bb0f8fd75dd953fffa06ba206098c2bba29c 100644 (file)
@@ -1,7 +1,7 @@
 
 ##############
 
-#[backup photo albums]
+#[backup_photo_albums]
 # back up the pictures in coppermine gallery every month.
 34 6 4 * * (source $FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh; tar -czf /z/stuffing/archives/photo_albums_backup_$(date_stringer).tar.gz /home/albums ; refred) &>>/tmp/${CRONUSER}-cron-backup_photo_albums.log
 
index e6ae20ed8305abeb80da531ef3b5092b29be22d1..1f04d2cc6dd69f02cd186f15c52f0a73be760526 100644 (file)
@@ -1,7 +1,7 @@
 
 ##############
 
-#[backup serene system]
+#[backup_serene_system]
 # backs up config files and important parts of home directories to off-machine storage.
 14 2 * * */7 (source $FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh; bash $FEISTY_MEOW_SCRIPTS/archival/serene_backer_upper.sh) &>>/tmp/${CRONUSER}-cron-backup_serene_system.log
 
index 2d4f5defb26c3fbfb06c90e8e503a95f5f2dd65c..dc9bd6a213d1e268939dac5d77da1413723a7759 100644 (file)
@@ -1,7 +1,7 @@
 
 ##############
 
-#[backup trac]
+#[backup_trac]
 # backs up trac every week.
 28 7 * * 2 bash $FEISTY_MEOW_APEX/scripts/archival/backup_trac.sh /home/trac /z/stuffing/archives &>>/tmp/${CRONUSER}-cron-backup_trac.log
 
index 9f54bb87d955b93cac2ba5a85416701adf061b96..604c5c92379c30cb3e055641328e09d0efb0abb1 100644 (file)
@@ -1,7 +1,7 @@
 
 ##############
 
-#[bookmarks builder]
+#[bookmarks_builder]
 # regenerate the bookmarks pages.
 24 10 * * * (source $FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh; bash $FEISTY_MEOW_SCRIPTS/bookmarks/create_marks.sh ) &>>/tmp/${CRONUSER}-cron-bookmarks_builder.log 
 
index 99c15e3e45f80c3b9bdfe86a344d3d9f7a7612e7..095b9ae4c5e69214fa795936e74bdd855f4ca92d 100644 (file)
@@ -1,7 +1,7 @@
 
 ##############
 
-#[emit crontab]
+#[emit_crontab]
 # meta-operation to backup the crontab file using cron itself.
 28 */8 * * * crontab -l >$HOME/$(hostname).$CRONUSER.crontab
 
index 90df89b52355f9555de4d39f0f723dcf5e33fe56..0848a58c63c0d043c896197c8d38c1235160e8d9 100644 (file)
@@ -1,7 +1,7 @@
 
 ##############
 
-#[letsencrypt renewal]
+#[letsencrypt_renewal]
 # run the letsencrypt certificate renewal process every 4 hours.
 # fixing issues in renewal by setting PATH.
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
index b0048a664631859f6d6d1306760e319f5081e362..7532f46473877cef340c5f5afd144827de220f4c 100644 (file)
@@ -1,7 +1,7 @@
 
 ##############
 
-#[mailman attribute fix]
+#[mailman_attribute_fix]
 # fix the mailman log files so that an obnoxious bug doesn't happen on the mailman web site.
 23 5 * * * chmod -R 02775 /var/lib/mailman/logs &>/dev/null 
 
index c8601f1608bde7018d778fd3523d0a78b902bb60..9ea138d64f3e8a5aa522a5a8af289532de90915f 100644 (file)
@@ -1,7 +1,7 @@
 
 ##############
 
-#[nechung fortune]
+#[nechung_fortune]
 # runs every minute and recreates a fortune for thunderbird signature.
 # a lot of the detail below is to get the feisty meow environment loaded for
 # the new_sig command.
index d6f56391fcf4fb27793c1d85c909776c8d961241..0c53dd731cecaea0211551717de009e48ac81663 100644 (file)
@@ -1,7 +1,7 @@
 
 ##############
 
-#[opensim restart]
+#[opensim_restart]
 # ensure opensim is started if we can't detect it as running.
 */5 * * * * (source $FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh; bash $FEISTY_MEOW_SCRIPTS/opensim/maybe_restart_opensim.sh) &>>/tmp/${CRONUSER}-cron-opensim_restart.log 
 
index 1913bd24bcf89fa991a74ec3fa6ed590a41a0caa..ac66fa2e613aa487345427d9a0b4a0c838744a9b 100644 (file)
@@ -1,7 +1,7 @@
 
 ##############
 
-#[pack feisty for web]
+#[pack_feisty_for_web]
 # this packs up our source code distributions every 8 days.
 16 22 */8 * * (source $FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh; bash $FEISTY_MEOW_SCRIPTS/archival/pack_feisty_meow.sh) &>>/tmp/${CRONUSER}-cron-pack_feisty_for_web.log 
 
index a8d150798c2f09d24289ac15560c357e305c14f5..27f6d880875d031a00f54822ae65cc2f4bcc86f0 100644 (file)
@@ -1,7 +1,7 @@
 
 ##############
 
-# [periodic reboot]
+# [periodic_reboot]
 # invigorates a shaky machine that cannot run longer than a certain time period.
 # version below reboots every two days, somewhat.
 20 4 * * 0,2,4,6 (source $FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh; sep; echo periodic reboot running at $(date) ; sep; sync; sleep 2; /sbin/reboot) &>>$HOME/${CRONUSER}-cron-periodic_reboot.log
index 3fde27b62e798518c6d586320d4fb27c2aa86387..f1ab51d306ef19d550a6a02cf282a94a5972cbf1 100644 (file)
@@ -1,7 +1,7 @@
 
 ##############
 
-#[process check]
+#[process_check]
 # a crontab for periodically dumping the process state.
 * * * * * (source $FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh; bash $FEISTY_MEOW_SCRIPTS/processes/show_hot_ones.sh) &>>/tmp/${CRONUSER}-cron-active_processes.log 
 
index a61613b9b082c2e8bc5a6d3e3e36c6c5f253adc3..5e8df1d6b47ece79b2b0ecea06291cfe0c9522c4 100644 (file)
@@ -1,7 +1,7 @@
 
 ##############
 
-#[random sound]
+#[random_sound]
 * * * * * (source $FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh; bash $FEISTY_MEOW_SCRIPTS/multimedia/randomly_play.sh) &>>/tmp/${CRONUSER}-cron-random_sound.log
 
 ##############
index 7b61de2910075c3df358d5840f5e35987fc73770..d9adf16781abd42bc76f95e134af8458c4dda532 100644 (file)
@@ -1,7 +1,7 @@
 
 ##############
 
-#[snarf linux configuration]
+#[snarf_linux_configuration]
 # do a backup of the linux configuration files once a week.
 28 7 * * 4 (source $FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh; cd /z/stuffing/archives; perl $FEISTY_MEOW_SCRIPTS/archival/snarf_linux_config.pl) &>>/tmp/${CRONUSER}-cron-snarf_linux_configuration.log
 
index 5b43e7904173f3e62808145216f515a5f78cb3a9..724e85dc8c8666c4128f53ce1586e0aed172ec59 100644 (file)
@@ -1,7 +1,7 @@
 
 ##############
 
-#[synch and swim downstream]
+#[synch_and_swim_downstream]
 # updates local code repositories from main versions before uploading any changes to downstream
 # repositories, such as sourceforge or github.  the uploading process (which we think of as sending
 # those updated items swimming downstream to their dependent repositories) is done automatically in
index 931023a18de80eb6b3f0c4f534922d42cb611e90..9e109057c51be396cf045242752a7582236ac535 100644 (file)
@@ -1,7 +1,7 @@
 
 ##############
 
-#[tell zooty our ip]
+#[tell_zooty_our_ip]
 # firewall host only--inform serene/zooty of our home IP address to enable back-connections.
 0,14,28,42,56 * * * * (bash $FEISTY_MEOW_APEX/scripts/security/tell_zooty_our_ip.sh serene.feistymeow.org fred $CRONUSER ) &>>/tmp/${CRONUSER}-cron-tell_zooty_our_ip.log
 
index 4d58fc58f538296828976762582d5b50758917cf..6b064f5c51088f46252b32cdd9b1190bd2031b85 100644 (file)
@@ -1,20 +1,32 @@
 
 ##############
 
-#[time synch]
+#[time_synch_suite]
 
 LOCAL_TIME_SERVER=greendragon
 
 ##############
 
-# note: uncomment one of the below (client or server).
+# note: uncomment only one of the below (local client, local server, or remote client).
 
+##############
+
+#[update_system_time_local_client]
 # standard version synchs to a local machine.  can be used on a network
 # to get time from central host.
 #*/4 * * * * /usr/sbin/ntpdate $LOCAL_TIME_SERVER &>>/tmp/${CRONUSER}-cron-time_synch.log
 
+##############
+
+#[update_system_time_local_server]
 # the central host machine uses this version, to synch time externally.
 #0 0,4,8,12,16,20 * * * /usr/bin/rdate -s time.nist.gov &>>/tmp/${CRONUSER}-cron-time_synch.log
 
 ##############
 
+#[update_system_time_remote_client]
+# synchronize the time with a real ntp server.
+#42 0,4,8,12,16,20 * * * (source $FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh; bash $FEISTY_MEOW_APEX/scripts/system/update_system_time.sh ) &>/tmp/${CRONUSER}-cron-update_system_time.log
+
+##############
+
index 2e2ae02e2f76959deda83c40d1cf3a4e1e635adc..b9dea26997f4aef2965413c2a2808af38b217a88 100644 (file)
@@ -1,7 +1,7 @@
 
 ##############
 
-#[update apt based linux crontab]
+#[update_apt_based_linux_crontab]
 # does a daily update of an apt-based linux box at pi o'clock.
 14 3 * * * (source $FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh; bash $FEISTY_MEOW_SCRIPTS/system/naive_system_updater.sh) &>>/tmp/${CRONUSER}-cron-update_aptbased_linux.log
 
index 3605e64871af5ba56bad592c92e45447214c73e4..2d92c8924cd1799cf25e6c46de8b4b55cc49fecc 100644 (file)
@@ -1,7 +1,7 @@
 
 ##############
 
-#[uptime report]
+#[uptime_report]
 # the script writes the current time and current uptime to the log file.
 0 * * * * (source $FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh; bash $FEISTY_MEOW_SCRIPTS/system/write_uptime_report.sh) &>>/tmp/${CRONUSER}-cron-uptime_report.log
 
index c3453d2f49d8ba30095cfd884e9020605117647f..643af13a76faf02e4ffbc8ac00a71d90109d5b76 100644 (file)
@@ -1,7 +1,7 @@
 
 ##############
 
-#[web group perm fix]
+#[web_group_perm_fix]
 # fix the web directories for group access.
 0 * * * * chmod -R g+w /var/www &>/dev/null