diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-09-05 15:29:31 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-06 10:35:24 +0100 |
commit | 16f3cd3535c9eec71ea7594c1e3a83db00dba7ca (patch) | |
tree | d170ba441671810a966505ea8e007862f408265e /bin | |
parent | 0dab45e9815e8939219900264e86f569c714b7c6 (diff) | |
download | bitbake-16f3cd3535c9eec71ea7594c1e3a83db00dba7ca.tar.gz |
toaster: remove handling of .toasterui.pid
This file is not created anywhere, but handled in toaster
script code.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/toaster | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/bin/toaster b/bin/toaster index 5e01101f9..b14749a8f 100755 --- a/bin/toaster +++ b/bin/toaster @@ -95,10 +95,6 @@ stop_system() # prevent reentry if [ $INSTOPSYSTEM -eq 1 ]; then return; fi INSTOPSYSTEM=1 - if [ -f ${BUILDDIR}/.toasterui.pid ]; then - kill `cat ${BUILDDIR}/.toasterui.pid` 2>/dev/null - rm ${BUILDDIR}/.toasterui.pid - fi webserverKillAll # unset exported variables unset TOASTER_DIR |