Skip to content
Snippets Groups Projects
Commit e5999b3f authored by Matthias Schiffer's avatar Matthias Schiffer
Browse files

gluon-luci-admin: allow removing all SSH keys

parent 74d29bcd
No related branches found
No related tags found
No related merge requests found
...@@ -40,7 +40,7 @@ if fs.access("/etc/config/dropbear") then ...@@ -40,7 +40,7 @@ if fs.access("/etc/config/dropbear") then
keys = s:option(TextValue, "_data", "") keys = s:option(TextValue, "_data", "")
keys.wrap = "off" keys.wrap = "off"
keys.rows = 5 keys.rows = 5
keys.rmempty = false keys.rmempty = true
function keys.cfgvalue() function keys.cfgvalue()
return fs.readfile("/etc/dropbear/authorized_keys") or "" return fs.readfile("/etc/dropbear/authorized_keys") or ""
...@@ -51,6 +51,10 @@ if fs.access("/etc/config/dropbear") then ...@@ -51,6 +51,10 @@ if fs.access("/etc/config/dropbear") then
fs.writefile("/etc/dropbear/authorized_keys", value:gsub("\r\n", "\n")) fs.writefile("/etc/dropbear/authorized_keys", value:gsub("\r\n", "\n"))
end end
end end
function keys.remove(self, section)
fs.remove("/etc/dropbear/authorized_keys")
end
end end
s = m:section(TypedSection, "_pass", nil, s = m:section(TypedSection, "_pass", nil,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment