Clarify explanation of the "DeleteScriptsOnStartup" config switch and add this to OpenSim.ini.example since it's very useful if you're not updating OpenSim from source.
On reflection, "DeleteScriptsOnStartup" isn't a great name since it suggests real script deletion rather than compiled versions.0.7.2-post-fixes
parent
084df4b7ef
commit
ee78c4d2a8
|
@ -218,6 +218,13 @@
|
||||||
;; server to send mail through.
|
;; server to send mail through.
|
||||||
; emailmodule = DefaultEmailModule
|
; emailmodule = DefaultEmailModule
|
||||||
|
|
||||||
|
; Controls whether previously compiled scripts are deleted on sim restart. If you disable this
|
||||||
|
; then startup will be faster since scripts won't need to be recompiled. However, then it becomes your responsibility to delete the
|
||||||
|
; compiled scripts if you're recompiling OpenSim from source code and internal interfaces used
|
||||||
|
; by scripts have changed.
|
||||||
|
; Default is false
|
||||||
|
; DeleteScriptsOnStartup = true
|
||||||
|
|
||||||
|
|
||||||
[SMTP]
|
[SMTP]
|
||||||
;; The SMTP server enabled the email module to send email to external
|
;; The SMTP server enabled the email module to send email to external
|
||||||
|
|
|
@ -1182,11 +1182,12 @@
|
||||||
;; Path to script assemblies
|
;; Path to script assemblies
|
||||||
; ScriptEnginesPath = "ScriptEngines"
|
; ScriptEnginesPath = "ScriptEngines"
|
||||||
|
|
||||||
; Whether to delete previously compiled scripts when the sim starts. If you disable this
|
; Controls whether previously compiled scripts are deleted on sim restart. If you disable this
|
||||||
; then startup will be faster. However, then it becomes your responsibility to delete the
|
; then startup will be faster since scripts won't need to be recompiled. However, then it becomes your responsibility to delete the
|
||||||
; compiled scripts if OpenSim has changed enough that previously compiled scripts are no
|
; compiled scripts if you're recompiling OpenSim from source code and internal interfaces used
|
||||||
; longer compatible.
|
; by scripts have changed.
|
||||||
DeleteScriptsOnStartup = true
|
; Default is false
|
||||||
|
; DeleteScriptsOnStartup = true
|
||||||
|
|
||||||
|
|
||||||
[OpenGridProtocol]
|
[OpenGridProtocol]
|
||||||
|
|
Loading…
Reference in New Issue