blob: 6906813276881ffa9e8fe2324a569132f5863191 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
# run vnstat if installed and at least one database exists
# Uncomment the following to enable
#if [ -x /usr/bin/vnstat ] && [ `ls /var/lib/vnstat/ | wc -l` -ge 1 ] ; then
# exec /usr/bin/vnstat -u
#fi
|