sonic-buildimage/platform/centec/docker-syncd-centec/start.sh

15 lines
172 B
Bash
Raw Normal View History

2017-03-04 04:17:38 -06:00
#!/bin/bash
function clean_up {
service syncd stop
service rsyslog stop
exit
}
trap clean_up SIGTERM SIGKILL
service rsyslog start
service syncd start
read