diff options
-rw-r--r-- | modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js index 3b1f14235d..45b9994cc6 100644 --- a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js +++ b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js @@ -14,6 +14,9 @@ return view.extend({ s.addremove = true; s.addbtntitle = _('Add instance'); + o = s.option(form.Flag, 'enable', _('Enable Instance'), _('Enable <abbr title="Secure Shell">SSH</abbr> service instance')); + o.default = o.enabled; + o = s.option(widgets.NetworkSelect, 'Interface', _('Interface'), _('Listen only on the given interface or, if unspecified, on all')); o.nocreate = true; |