#!/bin/bash
# remove watchdog iptables rules
# Environment variables:
# IP_ADDRESS - IP address of the local node
# QUIET - don't print anything to stdout/stderr
#
# Copyright (c) 2013-2017, Parallels International GmbH
#
# Our contact details: Parallels International GmbH, Vordergasse 59, 8200
# Schaffhausen, Switzerland.
#

. `dirname $0`/comm_wdog

function clean() {
	clean_arp
	clean_ip
}

if [ "X$QUIET" == "X1" ]; then
	clean >/dev/null 2>&1
else
	clean
fi

# vim: noet ts=8 sts=8 sw=8
