summaryrefslogtreecommitdiffhomepage
path: root/protocols/relay
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2012-05-31 16:16:32 +0000
committerJo-Philipp Wich <jow@openwrt.org>2012-05-31 16:16:32 +0000
commit100b544f3be0ded52e03ff7c62001e8395d02045 (patch)
tree9580af68a986696f5d2a4155c1f4cfdebbf7ad71 /protocols/relay
parenteb7a72f2513c79909386d1dce214b7ed184c398d (diff)
proto: fix feature detection of installed protocol handlers
Diffstat (limited to 'protocols/relay')
-rw-r--r--protocols/relay/luasrc/model/network/proto_relay.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/relay/luasrc/model/network/proto_relay.lua b/protocols/relay/luasrc/model/network/proto_relay.lua
index 03f6d6abf..42bd1f846 100644
--- a/protocols/relay/luasrc/model/network/proto_relay.lua
+++ b/protocols/relay/luasrc/model/network/proto_relay.lua
@@ -37,7 +37,7 @@ function proto.opkg_package(self)
end
function proto.is_installed(self)
- return nixio.fs.access("/lib/network/relay.sh")
+ return nixio.fs.access("/etc/init.d/relayd")
end
function proto.is_floating(self)