98e3479e26
* build orchagent and syncd docker on broadcom platform
15 lines
172 B
Bash
Executable File
15 lines
172 B
Bash
Executable File
#!/bin/bash
|
|
|
|
function clean_up {
|
|
service syncd stop
|
|
service rsyslog stop
|
|
exit
|
|
}
|
|
|
|
trap clean_up SIGTERM SIGKILL
|
|
|
|
service rsyslog start
|
|
service syncd start
|
|
|
|
read
|