aboutsummaryrefslogtreecommitdiffstats
path: root/bin/checkvnc
diff options
context:
space:
mode:
Diffstat (limited to 'bin/checkvnc')
-rwxr-xr-xbin/checkvnc10
1 files changed, 0 insertions, 10 deletions
diff --git a/bin/checkvnc b/bin/checkvnc
deleted file mode 100755
index 11e03bb3..00000000
--- a/bin/checkvnc
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/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