From 43ed9c0c883f2532c30b309dd9a6a8316199909b Mon Sep 17 00:00:00 2001 From: Niklas Yann Wettengel Date: Sat, 13 Apr 2019 01:29:23 +0200 Subject: nat64 --- roles/install_monitoring/files/vnstat.sh | 45 -------------------------------- 1 file changed, 45 deletions(-) delete mode 100755 roles/install_monitoring/files/vnstat.sh (limited to 'roles/install_monitoring/files/vnstat.sh') diff --git a/roles/install_monitoring/files/vnstat.sh b/roles/install_monitoring/files/vnstat.sh deleted file mode 100755 index 7ff875c..0000000 --- a/roles/install_monitoring/files/vnstat.sh +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/sh -set -e - -IFACES=$(ls /var/lib/vnstat/) - -TARGET=/srv/http/vnstat/ - -for iface in $IFACES; do - /usr/bin/vnstati -i ${iface} -h -o ${TARGET}${iface}_hourly.png - /usr/bin/vnstati -i ${iface} -d -o ${TARGET}${iface}_daily.png - /usr/bin/vnstati -i ${iface} -m -o ${TARGET}${iface}_monthly.png - /usr/bin/vnstati -i ${iface} -t -o ${TARGET}${iface}_top10.png - /usr/bin/vnstati -i ${iface} -s -o ${TARGET}${iface}_summary.png -done - -cat > ${TARGET}index.html < - - - - - - - - - -EOT - - -for iface in $IFACES; do - sed s/IFACE/${iface}/g >> ${TARGET}index.html < - traffic summary
- traffic per month
- traffic per hour
- traffic top10
- traffic per day - -EOT - -done - -echo "" >> ${TARGET}index.html - -- cgit v1.2.3-54-g00ecf