mirror of
				https://github.com/Telecominfraproject/ols-nos.git
				synced 2025-10-31 18:17:52 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			303 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			303 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| export platform=$(sonic-cfggen -d -y /etc/sonic/sonic_version.yml --var asic_type)
 | |
| 
 | |
| function start_app {
 | |
|     rm -f /var/run/iccpd/*
 | |
|     mclagsyncd &
 | |
|     iccpd
 | |
| }
 | |
| 
 | |
| function clean_up {
 | |
|     pkill -9 mclagsyncd
 | |
|     pkill -9 iccpd
 | |
|     exit
 | |
| }
 | |
| 
 | |
| trap clean_up SIGTERM SIGKILL
 | |
| start_app
 | |
| read
 | 
