mirror of
git://git.yoctoproject.org/yocto-autobuilder-helper.git
synced 2025-07-19 12:49:02 +02:00
13 lines
270 B
Bash
Executable File
13 lines
270 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# 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
|