aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authoronefang2021-09-03 03:04:35 +1000
committeronefang2021-09-03 03:04:35 +1000
commit60cab7a828f53d3193370e5536786c2daf8ec62b (patch)
tree4d6ab649863eac766a3d92f6a012749c76373964
parentDon't create the AssetsFiles directories. (diff)
downloadopensim-SC-60cab7a828f53d3193370e5536786c2daf8ec62b.zip
opensim-SC-60cab7a828f53d3193370e5536786c2daf8ec62b.tar.gz
opensim-SC-60cab7a828f53d3193370e5536786c2daf8ec62b.tar.bz2
opensim-SC-60cab7a828f53d3193370e5536786c2daf8ec62b.tar.xz
More messing with sledjchisl created directories.
-rw-r--r--src/sledjchisl/sledjchisl.c23
1 files changed, 18 insertions, 5 deletions
diff --git a/src/sledjchisl/sledjchisl.c b/src/sledjchisl/sledjchisl.c
index 3269f60..5269806 100644
--- a/src/sledjchisl/sledjchisl.c
+++ b/src/sledjchisl/sledjchisl.c
@@ -8570,9 +8570,9 @@ Build the OpenSim.
8570 tmp = xmprintf("%s/config", scRoot); 8570 tmp = xmprintf("%s/config", scRoot);
8571 if ((! qfile_exist(tmp)) && (! qfile_mkdir(tmp, S_IRWXU | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", tmp); 8571 if ((! qfile_exist(tmp)) && (! qfile_mkdir(tmp, S_IRWXU | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", tmp);
8572 free(tmp); 8572 free(tmp);
8573// tmp = xmprintf("%s/AssetFiles/data", scRoot); 8573 tmp = xmprintf("%s/AssetFiles/data", scRoot);
8574// if ((! qfile_exist(tmp)) && (! qfile_mkdir(tmp, S_IRWXU | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", tmp); 8574 if ((! qfile_exist(tmp)) && (! qfile_mkdir(tmp, S_IRWXU | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", tmp);
8575// free(tmp); 8575 free(tmp);
8576// tmp = xmprintf("%s/AssetFiles/tmp/spool", scRoot); 8576// tmp = xmprintf("%s/AssetFiles/tmp/spool", scRoot);
8577// if ((! qfile_exist(tmp)) && (! qfile_mkdir(tmp, S_IRWXU | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", tmp); 8577// if ((! qfile_exist(tmp)) && (! qfile_mkdir(tmp, S_IRWXU | S_IRGRP | S_IXGRP, true))) C("Unable to create path %s", tmp);
8578// free(tmp); 8578// free(tmp);
@@ -8585,11 +8585,24 @@ Make sure correct permissions are set everywhere.
8585 sudo chown -R ${OS_USER}:${OS_USER} ${OS_PATH} 8585 sudo chown -R ${OS_USER}:${OS_USER} ${OS_PATH}
8586 8586
8587Create the /opt/opensim-SC directory structure. 8587Create the /opt/opensim-SC directory structure.
8588. AssetFiles/data Think OpenSim creates all the sub directories itself? 8588. AssetFiles OpenSim DOES NOT create all the sub directories itself?
8589. AssetFiles/tmp/spool Think OpenSim creates all the sub directories itself? 8589+ tmp/spool
8590- data
8590. config/config.ini (move that to etc/config.ini later) 8591. config/config.ini (move that to etc/config.ini later)
8591. var/backups Copy examples/var/backups/*.IAR files, which are the newbie starter inventories. 8592. var/backups Copy examples/var/backups/*.IAR files, which are the newbie starter inventories.
8592. var/cache Think OpenSim creates all the sub directories itself? 8593. var/cache Think OpenSim creates all the sub directories itself?
8594 ScriptEngines
8595 j2kDecodeCache
8596 maptiles
8597 addin-db-002 Though I think it crashes the first time while creating this? Might be the registry thingy?
8598- DataSnapshot
8599- MapImageCache
8600- MeshCache
8601- addin-db-001
8602- addin-db-003
8603- addin-db-004
8604- assetcache Obsolete now we are using Linux memory cache?
8605- bakes
8593. var/run HAS to be setup correctly BEFORE we try to start up tmux. 8606. var/run HAS to be setup correctly BEFORE we try to start up tmux.
8594 web // Fill it with default web stuff from current -> example.. 8607 web // Fill it with default web stuff from current -> example..
8595*/ 8608*/