[fast-reboot] Back up FDB/ARP/Default routes (#4795)

FDB/ARP/Default routes files are deleted after swssconfig. This
makes debugging/validation of device conversion hard. This PR
saves those files in order to facilitate debugging of device conversion.

signed-off-by: Tamer Ahmed <tamer.ahmed@microsoft.com>
This commit is contained in:
Tamer Ahmed 2020-06-20 15:30:53 -07:00 committed by GitHub
parent 4d2d95e8e6
commit 211d1e7e2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,19 +8,19 @@ function fast_reboot {
if [[ -f /fdb.json ]];
then
swssconfig /fdb.json
rm -f /fdb.json
mv -f /fdb.json /fdb.json.1
fi
if [[ -f /arp.json ]];
then
swssconfig /arp.json
rm -f /arp.json
mv -f /arp.json /arp.json.1
fi
if [[ -f /default_routes.json ]];
then
swssconfig /default_routes.json
rm -f /default_routes.json
mv -f /default_routes.json /default_routes.json.1
fi
;;