#!/bin/bash
# Copyright (c) 1999-2017, Parallels International GmbH
# Copyright (c) 2017-2019 Virtuozzo International GmbH. All rights reserved.
#
# This file is part of OpenVZ libraries. OpenVZ is free software; you can
# redistribute it and/or modify it under the terms of the GNU Lesser General
# Public License as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301, USA.
#
# Our contact details: Virtuozzo International GmbH, Vordergasse 59, 8200
# Schaffhausen, Switzerland.
#
# This script does clean up after VPS shutdown
# For usage info see vz-stop(5) man page.
#
# Parameters are passed in environment variables.
# Required parameters:
#   VEID    - VPS id
#   IP_ADDR - VPS IP address(es) divided by spaces

. /usr/libexec/libvzctl/scripts/vz-functions

vzcheckvar VEID

if [ -f "$VE_STATE_DIR/$VEID" ]; then
	# get list of network devices for vzarp
	vzgetnetdev

	for IP in $(cat "$VE_STATE_DIR/$VEID" 2>/dev/null); do
		vzdelrouting $IP
		vzarp del $IP
	done

	rm -f $VE_STATE_DIR/$VEID
fi

[ "${TRAFFIC_SHAPING}" == "yes" ] && /usr/libexec/libvzctl/scripts/vz-setrate del

exit 0
# end of script
