mirror of
git://git.yoctoproject.org/yocto-autobuilder-helper.git
synced 2025-07-19 20:59:02 +02:00

Update the scripts to correctly reference the new script. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
11 lines
228 B
Bash
Executable File
11 lines
228 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# check if vnc server is running, and if not, cleanup and restart
|
|
#
|
|
grep ':170D' /proc/net/tcp > /dev/null
|
|
if [ $? != 0 ]; then
|
|
echo "Xvnc not running, attempting restart"
|
|
vncserver -kill :1
|
|
vncserver
|
|
fi
|