So I haven’t an Error on the Log but the userrights aren’t changing in the Fritzbox.
I had made a special user in Fritzbox for chaging the userright. I hope this is correct
It looks like that the EXEC Binding isn’t installed.
Off sudo: /etc/openhab2/scripts/fritzboxprofile.sh: command not found
I use openhabe 2.5 and I can't install the EXEC Binding over Paper UI. Is there an additional way to install it
Sorry I thought that the Binding is installed. I Tried it and I didn't receive an error message in Log
exec binding is a binding that needs to be installed
executeCommandLine is not part of the exec binding
according to your code snippets you use executeCommandLine which does not require the exec binding to be installed
command not found means that a file / binary or shell script that is to be executed cannot be found
as the shell script ( fritzboxprofile.sh ) is before the colon this should mean that your shell script is started to be executed but a command from inside of that shell script is not found
you can use a PATH variable inside of the script and add all relevant directories to that environment variable
alternatively you may always use full path to any executeable/script/command
add debug output to your script that ‘every’ line creates output once the error message appears you should be able to identify which command is the root cause ( because you can see the debug output of the line before )