From 5ed3e8659c0011258ab7ecfc96533e13c022c00b Mon Sep 17 00:00:00 2001 From: Daniel Molina Date: Fri, 2 Aug 2013 20:41:56 +0200 Subject: [PATCH] Bug #2253: Remove old VNC_LOCK constant --- src/sunstone/bin/novnc-server | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/sunstone/bin/novnc-server b/src/sunstone/bin/novnc-server index f72aba74fe..5f548d4968 100755 --- a/src/sunstone/bin/novnc-server +++ b/src/sunstone/bin/novnc-server @@ -21,21 +21,18 @@ ONE_LOCATION = ENV["ONE_LOCATION"] if !ONE_LOCATION LOG_LOCATION = "/var/log/one" - LOCK_LOCATION = "/var/lock/one" VAR_LOCATION = "/var/lib/one" SHARE_LOCATION = "/usr/share/one" ETC_LOCATION = "/etc/one" RUBY_LIB_LOCATION = "/usr/lib/one/ruby" else VAR_LOCATION = ONE_LOCATION + "/var" - LOCK_LOCATION = ONE_LOCATION + "/var" LOG_LOCATION = ONE_LOCATION + "/var" SHARE_LOCATION = ONE_LOCATION + "/share" ETC_LOCATION = ONE_LOCATION + "/etc" RUBY_LIB_LOCATION = ONE_LOCATION+"/lib/ruby" end -VNC_LOCK = LOCK_LOCATION + "/novnc.lock" VNC_LOG = LOG_LOCATION + "/novnc.log" CONFIGURATION_FILE = ETC_LOCATION + "/sunstone-server.conf"