9c5988fa7c
* Adding Marvell platform.
13 lines
133 B
Bash
Executable File
13 lines
133 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
function clean_up {
|
|
service syncd stop
|
|
exit
|
|
}
|
|
|
|
trap clean_up SIGTERM SIGKILL
|
|
|
|
service syncd start
|
|
|
|
read
|