#!/bin/sh
# Update/flush buffers for distributed-net

syncppp="YES"

if [ -r /etc/default/distributed-net ]; then
	. /etc/default/distributed-net
fi

if [ X"${syncppp}" = X"YES" ]; then
	/etc/init.d/distributed-net update
fi
