Fixed login form
[project/luci.git] / modules / admin-full / luasrc / model / cbi / admin_system / sshkeys.lua
1 --[[
2 LuCI - Lua Configuration Interface
3
4 Copyright 2008 Steven Barth <steven@midlink.org>
5 Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
6
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11         http://www.apache.org/licenses/LICENSE-2.0
12
13 $Id$
14 ]]--
15 local keyfile = "/etc/dropbear/authorized_keys" 
16
17 f = SimpleForm("sshkeys", translate("a_s_sshkeys"), translate("a_s_sshkeys1"))
18
19 t = f:field(TextValue, "keys")
20 t.rows = 10
21 function t.cfgvalue()
22         return luci.fs.readfile(keyfile) or ""
23 end
24
25 function f.handle(self, state, data)
26         if state == FORM_VALID then
27                 if (luci.fs.readfile(keyfile) or "") ~= data.keys then
28                         luci.fs.writefile(keyfile, data.keys)
29                 end
30         end
31         return true
32 end
33
34 return f