mirror of
				https://github.com/Telecominfraproject/ols-nos.git
				synced 2025-10-30 17:48:09 +00:00 
			
		
		
		
	[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:
		| @@ -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 | ||||
|  | ||||
|       ;; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Tamer Ahmed
					Tamer Ahmed