diff options
Diffstat (limited to 'src/sledjchisl/sledjchisl.c')
-rw-r--r-- | src/sledjchisl/sledjchisl.c | 23 |
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 | ||
8587 | Create the /opt/opensim-SC directory structure. | 8587 | Create 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 | */ |