summaryrefslogtreecommitdiff
path: root/updater.lua
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2020-12-01 07:50:24 +0100
committerKarel Kočí <cynerd@email.cz>2020-12-01 07:50:24 +0100
commitaa49a7bd8f3e230ce81798e9b94ad83c60265c96 (patch)
tree536ad6768929b80fb4fcd8a8531d5f5bd8b63bc0 /updater.lua
parent4b7abc62aa0a78eb94f0fb4a2a8210b25f6f136e (diff)
downloadopenwrt-personal-pkgs-aa49a7bd8f3e230ce81798e9b94ad83c60265c96.tar.gz
openwrt-personal-pkgs-aa49a7bd8f3e230ce81798e9b94ad83c60265c96.tar.bz2
openwrt-personal-pkgs-aa49a7bd8f3e230ce81798e9b94ad83c60265c96.zip
personal-enabler: add enabler for public services
Diffstat (limited to 'updater.lua')
-rw-r--r--updater.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/updater.lua b/updater.lua
index 011abab..7308ab3 100644
--- a/updater.lua
+++ b/updater.lua
@@ -32,27 +32,27 @@ Package("personal-pkgs-repo", { replan = "finished" })
local tools = false
local vpn = false
local bigclown = false
-local sentinel = false
+local public = false
uci_cursor:foreach("system", "system", function(s) hostname = s['hostname'] end)
if hostname == "turris-prague" then
tools = true
vpn = true
bigclown = true
- sentinel = true
+ public = true
Install("6to4")
Install("etherwake")
elseif hostname == "turris-home" then
tools = true
vpn = true
- sentinel = true
+ public = true
Install("transmission-daemon")
elseif hostname:match("-home$") then
tools = true
elseif hostname == "turris-adamkovi" then
tools = true
vpn = true
- sentinel = true
+ public = true
Install("etherwake")
elseif hostname:match("^work-") then
tools = true
@@ -77,6 +77,6 @@ if bigclown then
Install("mosquitto", "mosquitto-client")
Install("bigclown-leds")
end
-if sentinel then
- Install("personal-enabler-sentinel")
+if public then
+ Install("personal-enabler-sentinel", "personal-enabler-public-ssh")
end