You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-analyzer/vnstat/files/vnstat.cron-r1

8 lines
177 B

#!/bin/bash
# run vnstat if installed and at least one database exists
if [ -x /usr/bin/vnstat ] && [ `ls /var/lib/vnstat/ | wc -l` -ge 1 ] ; then
exec /usr/bin/vnstat -u
fi