From 513e1cbba9e8ba98cc0b4f667aa89233b72b4dd1 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Sun, 3 Aug 2008 16:39:20 +0000 Subject: [PATCH] libs/core: luci.model.ipkg: Use OPKG instead of IPKG if available --- libs/core/luasrc/model/ipkg.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/core/luasrc/model/ipkg.lua b/libs/core/luasrc/model/ipkg.lua index e95a2620a0..075acc4c3a 100644 --- a/libs/core/luasrc/model/ipkg.lua +++ b/libs/core/luasrc/model/ipkg.lua @@ -28,8 +28,9 @@ limitations under the License. module("luci.model.ipkg", package.seeall) require("luci.sys") require("luci.util") +require("luci.fs") -ipkg = "ipkg" +ipkg = luci.fs.access("/bin/opkg") and "opkg" or "ipkg" -- Returns repository information function info(pkg) -- 2.30.2