I am trying to send the following string using Mender Configure:
abc ${def} ghi
However, when I check the received value on the device, it appears as:
abc ghi
It seems that Mender Configure removes any content enclosed within ${}
.
Question:
Does Mender Configure not support sending values containing ${}
? If so, is there any way to escape or preserve them?
Steps to Reproduce:
- In the Mender UI, go to Configuration, set the key to
test
, and the value toabc ${def} ghi
. - Click SAVE AND APPLY TO DEVICE.
- Check the content of
/var/lib/mender-configure/device-config.json
on the device.# cat /var/lib/mender-configure/device-config.json | jq .test "abc ghi"