Home
> Mac administration, Mac OS X, Mac OS X Server, Scripting > Daily Server Report scripts updated
Daily Server Report scripts updated
I’ve made some updates to the daily server report scripts that I posted last August. I’ve updated the older post to reflect the changes, but you can also download the new scripts by clicking here.
Categories: Mac administration, Mac OS X, Mac OS X Server, Scripting
Thanks for these scripts. They are perfect and happen to give information my boss wants to see fairly regularly.
-Pszchad
Folks,
I need to add a second e-mail recipient. I have added “RECIP1″ in the:
# Define the recipient.
RECIP=”user@company.xxx”
RECIP1=”user1@company.xxx”
and
cat $LOGS | sendmail -f $RECIP1 -t
But I get 2 e-mails in the first recipient.
Regards
Kostas
What about adding Software Raid reporting commonly used by many in a Mac Mini Server for example ?
I’ve added this to the script and it works :
#This one checks for Apple Software Raid Volumes
echo “APPLE SOFTWARE RAID STATUS” >> $LOGS
echo “————————–” >> $LOGS
diskutil listRaid >> $LOGS
echo ” ” >> $LOGS
echo ” ” >> $LOGS
How can I add the AFP and SMB access logs?
Regards
Kostas