#!/bin/sh

pushd /etc/forwarding &> /dev/null
if [ -e UNDO ]; then
	cp -f UNDO REDO
	for i in $(<UNDO); do
		./$i stop
	done
fi
popd &> /dev/null

