blob: 02801156f860c122494a189106981eb6cc84413b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
-- Copyright 2014 Steven Barth <steven@midlink.org>
-- Licensed to the public under the Apache License 2.0.
local proto = luci.model.network:register_protocol("hnet")
function proto.get_i18n(self)
return luci.i18n.translate("Automatic Homenet (HNCP)")
end
function proto.is_installed(self)
return nixio.fs.access("/lib/netifd/proto/hnet.sh")
end
function proto.package_name(self)
return "hnet-full"
end
|