What does this mean?
I get no more information via:
root@test-ynh:~# yunohost app config get pyinventory --full
Error: Error while parsing config panel: Extra inputs are not permitted
It’s a WIP PR here: master <- testing by jedie · Pull Request #167 · YunoHost-Apps/pyinventory_ynh · GitHub
This is the current file part from pyinventory_ynh/manifest.toml at c999fabc3b3039668056cc3eb9ca45b9bf454f67 · YunoHost-Apps/pyinventory_ynh · GitHub
[install]
# https://yunohost.org/en/packaging_manifest#install-questions
[install.domain]
# this is a generic question - ask strings are automatically handled by Yunohost's core
type = "domain"
[install.path]
# this is a generic question - ask strings are automatically handled by Yunohost's core
# setting $path and template variable __PATH__
type = "path"
default = "/pyinventory_ynh"
[install.admin]
# this is a generic question - ask strings are automatically handled by Yunohost's core
type = "user"
[install.init_main_permission]
type = "group"
default = "admins"
[install.default_from_email] # __DEFAULT_FROM_EMAIL__
ask.en = "Default email address to use for various automated emails."
type = "email"
example = "admin@example.com"
[install.admin_email] # __ADMIN_EMAIL__
ask.en = "EMail address for error emails."
type = "email"
example = "admin@example.com"
[install.debug_enabled] # __DEBUG_ENABLED__ will be set to "0" or "1" string
ask.en = "Should be never enabled in production!"
type = "boolean"
[install.log_level] # __LOG_LEVEL__
ask.en = "Logging level"
type = "select"
choices.debug = "DEBUG"
choices.info = "INFO"
choices.warning = "WARNING"
choices.error = "ERROR"
choices.critical = "CRITICAL"
default = "warning"


