Sophie

Sophie

distrib > Mageia > 3 > i586 > media > core-release-src > by-pkgid > 0a3cfee485cb19a70f691944f4c128b1 > files > 4

vnstat-1.11-2.mga3.src.rpm

#!/bin/sh
if [ -r /etc/sysconfig/network-scripts/ifcfg-$1 ]; then
	. /etc/sysconfig/network-scripts/ifcfg-$1
	if [ "a$ACCOUNTING" = "ayes" ]; then
		if [ ! -w /var/lib/vnstat/$1 ]; then
			# creating database
			/usr/bin/vnstat -u -i $1 > /dev/null
		fi
		# enabling monitoring
		/usr/bin/vnstat -r --disable -i $1
		# update daemon
		# This stall the reboot
		# service vnstat force-reload
	fi
fi