diff --git a/docs/user/site.rst b/docs/user/site.rst index 93eefc24..b066f8c2 100644 --- a/docs/user/site.rst +++ b/docs/user/site.rst @@ -366,6 +366,38 @@ autoupdater \: package All configured mirrors must be reachable from the nodes via IPv6. If you don't want to set an IPv6 address explicitly, but use a hostname (which is recommended), see also the :ref:`FAQ `. +config_mode \: optional + Additional configuration for the configuration web interface. All values are + optional. + + By default, no altitude fields are shown by the *gluon-config-mode-geo-location* + package. If *geo_location.show_altitude* is set to *true*, the *gluon-config-mode:altitude-label* + and *gluon-config-mode:altitude-help* strings must be provided in the site i18n + data as well. + + The *owner.optional* option can be set to *false* to make the contact + information field mandatory. + + The remote login page only shows SSH key configuration by default. A + password form can be displayed by setting *remote_login.show_password_form* + to true; in this case, *remote_login.min_password_length* defines the + minimum password length. + :: + + config_mode = { + geo_location = { + show_altitude = true, + }, + owner = { + optional = false, + }, + remote_login = { + show_password_form = true, + min_password_length = 10, + }, + }, + + roles \: optional Optional role definitions. Nodes will announce their role inside the mesh. This will allow in the backend to distinguish between normal, backbone and diff --git a/package/gluon-config-mode-contact-info/check_site.lua b/package/gluon-config-mode-contact-info/check_site.lua index 1e20bcb8..7dd39e38 100644 --- a/package/gluon-config-mode-contact-info/check_site.lua +++ b/package/gluon-config-mode-contact-info/check_site.lua @@ -1 +1 @@ -need_boolean(in_site({'config_mode', 'owner', 'obligatory'}), false) +need_boolean(in_site({'config_mode', 'owner', 'optional'}), false) diff --git a/package/gluon-config-mode-contact-info/luasrc/lib/gluon/config-mode/wizard/0500-contact-info.lua b/package/gluon-config-mode-contact-info/luasrc/lib/gluon/config-mode/wizard/0500-contact-info.lua index 8314dd7e..3afff6b4 100644 --- a/package/gluon-config-mode-contact-info/luasrc/lib/gluon/config-mode/wizard/0500-contact-info.lua +++ b/package/gluon-config-mode-contact-info/luasrc/lib/gluon/config-mode/wizard/0500-contact-info.lua @@ -14,7 +14,7 @@ return function(form, uci) local o = s:option(Value, "contact", pkg_i18n.translate("Contact info"), pkg_i18n.translate("e.g. E-mail or phone number")) o.default = uci:get("gluon-node-info", owner, "contact") - o.optional = not site.config_mode.owner.obligatory(false) + o.optional = site.config_mode.owner.optional(true) -- without a minimal length, an empty string will be accepted even with "optional = false" o.datatype = "minlength(1)" function o:write(data)