diff options
author | Alexandre Esse <alexandre.esse.dev@gmail.com> | 2017-05-31 23:40:45 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-06-06 23:01:48 +0200 |
commit | 41e86cd5cad853d7778231be8ce7c6fdb87e3da4 (patch) | |
tree | 93fcae2c0ccc4ff49f0edc96fe6c1fd1aeb289c6 | |
parent | a2bfe74f3496305b1e2b72dca15171f75ecf6efc (diff) | |
download | buildroot-41e86cd5cad853d7778231be8ce7c6fdb87e3da4.tar.gz buildroot-41e86cd5cad853d7778231be8ce7c6fdb87e3da4.zip |
imx-uuc: fix start-stop-daemon stop failure
The daemon service script associated with imx-uuc failed to stop the daemon
since the PID of the process wasn't stored at start time.
Adding -m option allowed to create the uuc.pid file as expected.
Signed-off-by: Alexandre Esse <alexandre.esse.dev@gmail.com>
Reviewed-by: Gary Bisson <gary.bisson@boundarydevices.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/freescale-imx/imx-uuc/S80imx-uuc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/freescale-imx/imx-uuc/S80imx-uuc b/package/freescale-imx/imx-uuc/S80imx-uuc index 8a02f88e50..9a92c98383 100644 --- a/package/freescale-imx/imx-uuc/S80imx-uuc +++ b/package/freescale-imx/imx-uuc/S80imx-uuc @@ -6,7 +6,7 @@ DAEMON=/usr/bin/$NAME case "$1" in start) printf "Starting $NAME: " - start-stop-daemon -S -q -b -p /var/run/${NAME}.pid -x $DAEMON + start-stop-daemon -S -q -b -m -p /var/run/${NAME}.pid -x $DAEMON [ $? = 0 ] && echo "OK" || echo "FAIL" ;; stop) |