If you aren’t going to use the component scripts, then there is no need to install them. I think I should move them into a separate folder, like the Script Examples.
Line 8 is import openhab
, so my guess is that the scripts are loading before the modules are fully loaded. This is a known bug, similar to the Rules DSL loading scripts before tiems are fully loaded. You could try adding this script to delay the loading of the other scripts (including the components). Name it 000_startup.py and put it in the root of /automation/jsr223/
. Hopefully that helps. I use this script and do not see the same errors you are reporting. If this resolves it, I’ll add it to the repo.
import time
from org.slf4j import Logger, LoggerFactory
log = LoggerFactory.getLogger("org.eclipse.smarthome.model.script.Rules")
log.info("JSR223: Startup: Checking for initialized context")
while True:
try:
scriptExtension.importPreset("RuleSupport")
if automationManager != None:
log.info("JSR223: Startup: context initialized... waiting 30s before allowing files to load")
break;
except:
pass
log.info("JSR223: Startup: Context not initialized yet... waiting 10s before checking again")
time.sleep(10)
time.sleep(30)
log.info("JSR223: Startup: Complete")