Add and remove classic UI

I’m running openHAB 2.0.0.b2. I changed

ui = basic,paper

to

ui = basic,paper,classic

in conf/services/addons.cfg and save and then the classic UI is installed:

2016-05-31 09:23:27.294 [INFO ] [assic.internal.servlet.WebAppServlet] - Started Classic UI at /classicui/app
2016-05-31 09:23:27.397 [INFO ] [core.karaf.internal.FeatureInstaller] - Installed 'openhab-ui-classic'

When I subsequently change

ui = basic,paper,classic

to

ui = basic,paper

and save, the classic UI is not uninstalled. If I run:

openhab> feature:uninstall openhab-ui-classic

on the console, then it is uninstalled. Is this behaviour intentional?

Thanks!

yes, that’s correct. You can install the classic ui through

openhab> feature:install openhab-ui-classic

The conf/services/addons.cfg is for setting the auto feature installation, this is helpful when setting up an existing installation from scratch, i.e. update or upgrade.

Ok, thanks very much for the clarificaiton :slight_smile: