24 lines
347 B
Bash
24 lines
347 B
Bash
#!/bin/bash
|
|
|
|
|
|
|
|
#Create index
|
|
time duc index / --fs-exclude=nfs
|
|
|
|
|
|
#Produce report
|
|
cd /root
|
|
TODAY="$(date +%m-%d)"
|
|
REPORT_FILENAME="$(hostname).$TODAY.png"
|
|
duc graph /
|
|
mv duc.png $REPORT_FILENAME
|
|
|
|
|
|
#Send report to central server
|
|
scp -i /root/.ssh/duc_rsa $REPORT_FILENAME duc_user@txn04-slack-master.tplab.tippingpoint.com:/var/www/html/space/
|
|
|
|
|
|
|
|
|
|
|