PaperUI =B""

I get the following for true / wrong configurations.

e.g. autoLinks =B"false" autoIgnore=B"true" autoApprove=B"false" remote = B"true" legacy = B"false"

What does B mean?

openHAB 2.2.0 Build #1027

No clue. Where exactly do you see this?

e.g /var/lib/openhab2/etc/org.eclipse.smarthome.links.cfg /org.openhab.addons.cfg
/var/lib/openhab2/config/org/openhab/addon.config
var/lib/openhab2/config/org/eclipse/smarthome/inbox.config

It happens when I change the above values via the PaperUI
I would like to take these values with an update. For this I create in / etc / openhab2 / services / a .cfg file

org.eclipse.smarthome.core.localeprovider:language=de
org.eclipse.smarthome.core.localeprovider:region=DE
org.eclipse.smarthome.inbox:autoApprove=false
org.eclipse.smarthome.links:autoLinks=false
org.eclipse.smarthome.persistence:default=jdbc
org.eclipse.smarthome.core.i18nprovider:language=de
org.eclipse.smarthome.core.i18nprovider:location=xx.xxxxxx,xx.xxxxxx
org.eclipse.smarthome.core.i18nprovider:region=DE
org.eclipse.smarthome.basicui:defaultSitemap=openHAB
org.eclipse.smarthome.classicui:defaultSitemap=openHAB
org.eclipse.smarthome.core.net.NetUtil:primaryAddress=10.10.10.0/24

I remember that the items from / etc / openhab2 / items / and which I had added via the PaperUI could all see in the PaperUI.
Now the field is blank when I add etc / openhab2 / items / to openHAB

also in /var/lib/openhab2/config/org/openhab/dashboard.config

_felix_.cm.newConfiguration=B"true"

The “B” simply stands for Boolean. Note that the *.config files are internal files of the OSGi Configuration Admin service and thus should not be edited.

1 Like

The .config files in var / lib / openhab2 / … I do not change. I only change the files in etc / openhab2 / … Openhab does not accept these settings. It requires other values

Input
etc/openhab2/services /runtime.cfg -> org.eclipse.smarthome.links:autoLinks=false

required
var/lib/openhab2/etc/org.eclipse.smarthome.links.cfg -> autoLinks =B"false"

I do not know how I have to change the input so the output is right

After each restart I have to change the value in PaperUI, since it is not taken over correctly.

A few versioner before it has worked

Input
etc/openhab2/services /runtime.cfg -> org.eclipse.smarthome.links:autoLinks=false

required
var/lib/openhab2/etc/org.eclipse.smarthome.links.cfg -> autoLinks ="false"

I’ve noticed that at least in “org.eclipse.smarthome.links.cfg” whatever change added this B may have broken something else, with 1031 changing the autoLinks flag doesn’t stick anymore and the system is stuck in simple mode.

This this related to my post here?:

Items menu is missing in PaperUI

Yeah, it seems like the UI was updated to use the new B"true"/B"False" format but the part of the runtime that uses the values is broken so my OH2 is running off of defaults if the setting is boolean.