diff options
| author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2015-12-17 16:48:47 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-18 13:51:53 +0000 |
| commit | 8e4acacb53ef3af83cb67676dbca8471ca5911e5 (patch) | |
| tree | 5524116d96fc0693b698029d39c7fa4725c55d73 | |
| parent | 847b93596dcb8bb154bada121ed5f878070fdc4b (diff) | |
| download | poky-8e4acacb53ef3af83cb67676dbca8471ca5911e5.tar.gz | |
bitbake: toaster: check if address:port is in use
Used new management command checksocket to check if
Toaster can listen on address:port.
[YOCTO #8775]
(Bitbake rev: 8a306ffe5a3642fe833c875362a183096a39f641)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Elliot Smith <elliot.smith@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rwxr-xr-x | bitbake/bin/toaster | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bitbake/bin/toaster b/bitbake/bin/toaster index 1c1e029838..f43bcb167e 100755 --- a/bitbake/bin/toaster +++ b/bitbake/bin/toaster | |||
| @@ -309,6 +309,11 @@ fi | |||
| 309 | 309 | ||
| 310 | echo "The system will $CMD." | 310 | echo "The system will $CMD." |
| 311 | 311 | ||
| 312 | # check if addr:port is not in use | ||
| 313 | if [ "$CMD" == 'start' ]; then | ||
| 314 | python $BBBASEDIR/lib/toaster/manage.py checksocket "0.0.0.0:$WEB_PORT" || return 1 | ||
| 315 | fi | ||
| 316 | |||
| 312 | # Make sure it's safe to run by checking bitbake lock | 317 | # Make sure it's safe to run by checking bitbake lock |
| 313 | 318 | ||
| 314 | lock=1 | 319 | lock=1 |
