From ae556e03e819a710160069f5e4c6d613f4e55eff Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sat, 28 Mar 2026 14:10:03 -0700 Subject: [PATCH] Enhance output of sending all masters. --- rc_shared.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rc_shared.sh b/rc_shared.sh index 845a260..ab303bb 100644 --- a/rc_shared.sh +++ b/rc_shared.sh @@ -74,12 +74,14 @@ export -f clone # Enhance Bin Scripts function send-masters { + echo -e "`date` - Looping through MASTER directories.\n" ls | grep MASTER | while read dir; do - echo "Preparing to sync '$dir' to '$SERVER_NAME'." + echo -e "`date` - Found '$dir'..." cd $dir send-master cd .. done + echo -e "\n`date` - Done checking for MASTER directories." } export -f send-masters