Skip to content
This repository was archived by the owner on May 14, 2019. It is now read-only.

Updating ideAlarm

Richard Roe edited this page Mar 9, 2018 · 5 revisions

Check the Release Notices!

The release notices contains important notes about steps that you might have to do before updating. If you are updating from an older release you should go through all the required steps. If you don't pay attention to them, your ideAlarm system will likely fail to work.

Update procedure

  • Download The library init file and save it by the name $OPENHAB_CONF/automation/lib/python/idealarm/__init__.py owerwriting the previous file.
  • Download the 001_ideAlarm.py and save it by the name $OPENHAB_CONF/automation/jsr223/001_ideAlarm.py
  • Change file ownership to openhab and group information to openhab for all downloaded files.

Example linux commands for doing all of the above:

sudo wget -O $OPENHAB_CONF/automation/lib/python/idealarm/__init__.py https://raw.githubusercontent.com/OH-Jython-Scripters/ideAlarm/master/automation/lib/python/idealarm/__init__.py
sudo wget -O $OPENHAB_CONF/automation/jsr223/001_ideAlarm.py https://raw.githubusercontent.com/OH-Jython-Scripters/ideAlarm/master/automation/jsr223/001_ideAlarm.py
sudo chown openhab:openhab $OPENHAB_CONF/automation/lib/python/idealarm/__init__.py
sudo chown openhab:openhab $OPENHAB_CONF/automation/jsr223/001_ideAlarm.py
  • Restart openHAB
Clone this wiki locally