aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--myrepo-cert/Makefile2
-rw-r--r--myrepo-cert/files/updater.lua9
2 files changed, 9 insertions, 2 deletions
diff --git a/myrepo-cert/Makefile b/myrepo-cert/Makefile
index 9c0cba2..c8ce9d6 100644
--- a/myrepo-cert/Makefile
+++ b/myrepo-cert/Makefile
@@ -8,7 +8,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=myrepo-cert
-PKG_VERSION:=2
+PKG_VERSION:=3
PKG_MAINTAINER:=Karel Koci
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
diff --git a/myrepo-cert/files/updater.lua b/myrepo-cert/files/updater.lua
index 2f663ab..f68f585 100644
--- a/myrepo-cert/files/updater.lua
+++ b/myrepo-cert/files/updater.lua
@@ -1,3 +1,10 @@
-Script("myrepo", "http://cynerd.cz/myrepo/" .. string.lower(model) .. ".lua", {
+local board
+if model:match('[Oo]mnia') then
+ board = "omnia"
+else
+ board = "turris"
+end
+
+Script("myrepo", "http://cynerd.cz/myrepo/" .. board .. ".lua", {
pubkey = "file:///etc/updater/keys/myrepo.pub"
})