[tuxdroid-svn] r5140 - software_suite_v3/smart-core/smart-server/trunk
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-07-23 09:46:12
|
Author: remi
Date: 2009-07-23 11:45:58 +0200 (Thu, 23 Jul 2009)
New Revision: 5140
Modified:
software_suite_v3/smart-core/smart-server/trunk/TDSConfiguration.py
Log:
* Reverted commit #5108
Modified: software_suite_v3/smart-core/smart-server/trunk/TDSConfiguration.py
===================================================================
--- software_suite_v3/smart-core/smart-server/trunk/TDSConfiguration.py 2009-07-23 08:30:12 UTC (rev 5139)
+++ software_suite_v3/smart-core/smart-server/trunk/TDSConfiguration.py 2009-07-23 09:45:58 UTC (rev 5140)
@@ -86,12 +86,12 @@
if os.name == 'nt':
TDS_RESOURCES_CONF_PATH = os.path.join(ALLUSERSBASEDIR, "configurations", "resources")
else:
- TDS_RESOURCES_CONF_PATH = os.path.join(TUXDROID_BASE_PATH, "resources_conf")
+ TDS_RESOURCES_CONF_PATH = os.path.join("/etc/tuxdroid", "resources_conf")
# Path of the user configurations
if os.name == 'nt':
TDS_USERS_CONF_PATH = os.path.join(ALLUSERSBASEDIR, "configurations", "users_conf")
else:
- TDS_USERS_CONF_PATH = os.path.join(TUXDROID_BASE_PATH, "users_conf")
+ TDS_USERS_CONF_PATH = os.path.join("/etc/tuxdroid", "users_conf")
# Path of the default content of the server
if os.name == 'nt':
TDS_DEFAULT_CONTENT_PATH = os.path.join(ALLUSERSBASEDIR, "resources")
|